unbreak touching in prod mode

Reviewed By: ejanzer, bvaughn

Differential Revision: D5599808

fbshipit-source-id: bbc666c5a7e15323504100bdf3b04452e152fdb5
This commit is contained in:
Ben Alpert 2017-08-09 19:58:06 -07:00 committed by Facebook Github Bot
parent de4e51beaf
commit 460c5dbdf9
1 changed files with 1 additions and 1 deletions

View File

@ -3384,7 +3384,7 @@ function resetTouchRecord(touchRecord, touch) {
function getTouchIdentifier(_ref) {
var identifier = _ref.identifier;
return invariant(null != identifier, "Touch object is missing identifier."), warning$15(identifier <= MAX_TOUCH_BANK, "Touch identifier %s is greater than maximum supported %s which causes " + "performance issues backfilling array locations for all of the indices.", identifier, MAX_TOUCH_BANK),
return invariant(null != identifier, "Touch object is missing identifier."),
identifier;
}