remove unused var
Reviewed By: shergin Differential Revision: D5175318 fbshipit-source-id: 61d75bb386918e297f26d8772a5463c257a1590a
This commit is contained in:
parent
072d2709df
commit
888a1e63d5
|
@ -81,7 +81,6 @@ public class CatalystInstanceImpl implements CatalystInstance {
|
|||
private boolean mInitialized = false;
|
||||
private volatile boolean mAcceptCalls = false;
|
||||
|
||||
private boolean mJSBundleHasStartedLoading;
|
||||
private boolean mJSBundleHasLoaded;
|
||||
private @Nullable String mSourceURL;
|
||||
|
||||
|
@ -200,8 +199,6 @@ public class CatalystInstanceImpl implements CatalystInstance {
|
|||
public void runJSBundle() {
|
||||
Assertions.assertCondition(!mJSBundleHasLoaded, "JS bundle was already loaded!");
|
||||
|
||||
mJSBundleHasStartedLoading = true;
|
||||
|
||||
// incrementPendingJSCalls();
|
||||
mJSBundleLoader.loadScript(CatalystInstanceImpl.this);
|
||||
|
||||
|
|
Loading…
Reference in New Issue