Skip to content

Commit

Permalink
https://github.com/facebook/react-native/pull/11329
Browse files Browse the repository at this point in the history
  • Loading branch information
jpshelley committed Dec 12, 2016
1 parent ac5a3b9 commit 178736d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public String getJSMainModuleName() {
}

@Override
protected boolean getUseDeveloperSupport() {
public boolean getUseDeveloperSupport() {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public String getJSMainModuleName() {
}

@Override
protected boolean getUseDeveloperSupport() {
public boolean getUseDeveloperSupport() {
return true;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ protected String getJSMainModuleName() {
/**
* Returns whether dev mode should be enabled. This enables e.g. the dev menu.
*/
protected abstract boolean getUseDeveloperSupport();
public abstract boolean getUseDeveloperSupport();

/**
* Returns a list of {@link ReactPackage} used by the app.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class MainApplication extends Application implements ReactApplication {

private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
@Override
protected boolean getUseDeveloperSupport() {
public boolean getUseDeveloperSupport() {
return BuildConfig.DEBUG;
}

Expand Down

0 comments on commit 178736d

Please sign in to comment.