From 88c2aa61b95a06acacf28b1f75505ae11691a496 Mon Sep 17 00:00:00 2001 From: Huang Yu Date: Mon, 18 Jan 2016 14:27:51 -0800 Subject: [PATCH] fix lint warnings Summary: added two semi colons, separated from other lint commits to avoid potential conflicts Closes https://github.com/facebook/react-native/pull/5217 Reviewed By: svcscm Differential Revision: D2818391 Pulled By: mkonicek fb-gh-sync-id: 94e3640a30fb7ab932b15bfd84a0ab346c82d5d7 --- Libraries/Utilities/MessageQueue.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/Utilities/MessageQueue.js b/Libraries/Utilities/MessageQueue.js index 1eb3c5c65..f22094bbe 100644 --- a/Libraries/Utilities/MessageQueue.js +++ b/Libraries/Utilities/MessageQueue.js @@ -110,7 +110,7 @@ class MessageQueue { processModuleConfig(config, moduleID) { const module = this._genModule(config, moduleID); - this._genLookup(config, moduleID, this._remoteModuleTable, this._remoteMethodTable) + this._genLookup(config, moduleID, this._remoteModuleTable, this._remoteMethodTable); return module; }