Skip to content

Commit

Permalink
Remove minNumShakes from ReactInstaneManager
Browse files Browse the repository at this point in the history
Reviewed By: kathryngray

Differential Revision: D6313521

fbshipit-source-id: ffef1f96fbec88cdcc7597fa81505aee59e10bb8
  • Loading branch information
Dmitry Zakharov authored and facebook-github-bot committed Nov 14, 2017
1 parent 4f886a2 commit cfa2bbf
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ public interface ReactInstanceEventListener {
private final @Nullable NativeModuleCallExceptionHandler mNativeModuleCallExceptionHandler;
private final boolean mLazyNativeModulesEnabled;
private final boolean mDelayViewManagerClassLoadsEnabled;
private final int mMinNumShakes;

private class ReactContextInitParams {
private final JavaScriptExecutorFactory mJsExecutorFactory;
Expand Down Expand Up @@ -234,7 +233,6 @@ public static ReactInstanceManagerBuilder builder() {
mNativeModuleCallExceptionHandler = nativeModuleCallExceptionHandler;
mLazyNativeModulesEnabled = lazyNativeModulesEnabled;
mDelayViewManagerClassLoadsEnabled = delayViewManagerClassLoadsEnabled;
mMinNumShakes = minNumShakes;
synchronized (mPackages) {
PrinterHolder.getPrinter()
.logMessage(ReactDebugOverlayTags.RN_CORE, "RNCore: Use Split Packages");
Expand Down Expand Up @@ -827,10 +825,6 @@ public LifecycleState getLifecycleState() {
return mLifecycleState;
}

public int getMinNumShakes() {
return mMinNumShakes;
}

@ThreadConfined(UI)
private void onReloadWithJSDebugger(JavaJSExecutor.Factory jsExecutorFactory) {
Log.d(ReactConstants.TAG, "ReactInstanceManager.onReloadWithJSDebugger()");
Expand Down

0 comments on commit cfa2bbf

Please sign in to comment.