Skip to content

Commit

Permalink
fixed “is not enclousing class error”
Browse files Browse the repository at this point in the history
  • Loading branch information
iballan committed May 3, 2017
1 parent f82d5ee commit f2a59c1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ You can install using Gradle:
maven { url "https://jitpack.io" }
}
dependencies {
compile 'com.github.iballan:hfradapter:1.0.2'
compile 'com.github.iballan:hfradapter:1.0.3'
}
```

Expand Down
4 changes: 2 additions & 2 deletions hfradapter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
defaultConfig {
minSdkVersion 9
targetSdkVersion 25
versionCode 3
versionName "1.0.2"
versionCode 4
versionName "1.0.3"
}

compileOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public void onScrollStateChanged(RecyclerView recyclerView, int newState) {
};
}

public abstract class OnUpDownScrollListener {
public static abstract class OnUpDownScrollListener {
public void onScrollUp(int dy) {}

public void onScrollDown(int dy) {}
Expand All @@ -135,7 +135,7 @@ public void onScrolledToBottom() {}
public void onScrollStopped() {}
}

public abstract class OnLeftRightScrollListener {
public static abstract class OnLeftRightScrollListener {
public void onScrollLeft(int dx) {}

public void onScrollRight(int dx) {}
Expand Down

0 comments on commit f2a59c1

Please sign in to comment.