Skip to content

Commit 2939bce

Browse files
committed
upgrade gradle to 2.3.1
1 parent 41ffe17 commit 2939bce

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.3.0'
8+
classpath 'com.android.tools.build:gradle:2.3.1'
99
classpath 'com.novoda:bintray-release:+'
1010
}
1111
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#Sat Mar 18 15:26:33 CST 2017
1+
#Wed May 03 22:49:52 CST 2017
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME

rxerrorhandler/src/main/java/me/jessyan/rxerrorhandler/core/RxErrorHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public static Builder builder() {
2121
return new Builder();
2222
}
2323

24-
public ErrorHandlerFactory getmHandlerFactory() {
24+
public ErrorHandlerFactory getHandlerFactory() {
2525
return mHandlerFactory;
2626
}
2727

rxerrorhandler/src/main/java/me/jessyan/rxerrorhandler/handler/ErrorHandleSubscriber.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public abstract class ErrorHandleSubscriber<T> extends Subscriber<T> {
1212
private ErrorHandlerFactory mHandlerFactory;
1313

1414
public ErrorHandleSubscriber(RxErrorHandler rxErrorHandler){
15-
this.mHandlerFactory = rxErrorHandler.getmHandlerFactory();
15+
this.mHandlerFactory = rxErrorHandler.getHandlerFactory();
1616
}
1717

1818
@Override

0 commit comments

Comments
 (0)