Skip to content

Commit 46cd038

Browse files
author
zagum
committed
downgrade support library to version 25.0.1
1 parent 44ae68e commit 46cd038

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

expandicon/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'com.android.library'
22

33
dependencies {
4-
compile 'com.android.support:appcompat-v7:25.1.0'
4+
compile 'com.android.support:appcompat-v7:25.0.1'
55
}
66

77
android {

expandicon/src/main/java/com/github/zagum/expandicon/ExpandIconView.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public void setState(@State int state, boolean animate) {
112112
*/
113113
public void setFraction(float fraction, boolean animate) {
114114
if (fraction < 0f || fraction > 1f) {
115-
throw new IllegalArgumentException("Progress value must be from 0 to 1f, fraction=" + fraction);
115+
throw new IllegalArgumentException("Fraction value must be from 0 to 1f, fraction=" + fraction);
116116
}
117117
if (this.fraction == fraction) return;
118118
this.fraction = fraction;

0 commit comments

Comments
 (0)