Skip to content

Commit

Permalink
downgrade support library to version 25.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zagum committed Dec 28, 2016
1 parent 44ae68e commit 46cd038
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion expandicon/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.library'

dependencies {
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:appcompat-v7:25.0.1'
}

android {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public void setState(@State int state, boolean animate) {
*/
public void setFraction(float fraction, boolean animate) {
if (fraction < 0f || fraction > 1f) {
throw new IllegalArgumentException("Progress value must be from 0 to 1f, fraction=" + fraction);
throw new IllegalArgumentException("Fraction value must be from 0 to 1f, fraction=" + fraction);
}
if (this.fraction == fraction) return;
this.fraction = fraction;
Expand Down

0 comments on commit 46cd038

Please sign in to comment.