Skip to content

Commit

Permalink
Version 5.0.1
Browse files Browse the repository at this point in the history
- Fixed validation issue with DateAndTimeIndicators.
  • Loading branch information
turing-tech committed Sep 23, 2015
1 parent 6c5a45d commit 82f220e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ext {
siteUrl = 'https://github.com/krimin-killr21/MaterialScrollBar'
gitUrl = 'https://github.com/krimin-killr21/MaterialScrollBar.git'

libraryVersion = '5.0.0'
libraryVersion = '5.0.1'

developerId = 'krimin-killr21'
developerName = 'Turing Technologies'
Expand All @@ -31,8 +31,8 @@ android {
defaultConfig {
minSdkVersion 7
targetSdkVersion 23
versionCode 9
versionName "5.0.0"
versionCode 10
versionName "5.0.1"
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ int getIndicatorWidth() {

@Override
void testAdapter(RecyclerView.Adapter adapter) {
if(!(adapter instanceof INameableAdapter)){
if(!(adapter instanceof IDateableAdapter)){
throw new adapterNotSetupForIndicatorException("IDateableAdapter");
}
}
Expand Down

0 comments on commit 82f220e

Please sign in to comment.