Skip to content

Commit

Permalink
Merge pull request #25 from Fueled/set-screen-fix
Browse files Browse the repository at this point in the history
Update `Flowr#setRouterScreen` method access to public
  • Loading branch information
julien-fueled authored Jun 29, 2017
2 parents d5bda21 + af9dd30 commit 82936e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2'
classpath 'com.android.tools.build:gradle:2.3.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
2 changes: 1 addition & 1 deletion flowr/src/main/java/com/fueled/flowr/Flowr.java
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ protected FlowrScreen getRouterScreen() {
*
* @param flowrScreen the router screen to be used
*/
protected void setRouterScreen(FlowrScreen flowrScreen) {
public void setRouterScreen(FlowrScreen flowrScreen) {
removeCurrentRouterScreen();
if (flowrScreen != null) {
this.screen = flowrScreen;
Expand Down

0 comments on commit 82936e9

Please sign in to comment.