Skip to content

Commit 0b2abde

Browse files
committed
fix one bug
1 parent 29b3992 commit 0b2abde

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

app/src/main/java/com/malin/rengwuxianrxjava/activity/MainActivity.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -985,15 +985,16 @@ public void call(Integer integer) {
985985
}
986986

987987

988-
private static final int COUNT= 10;
989-
private static final int TIME_ALL=5000;
988+
private static final int COUNT = 10;
989+
private static final int TIME_ALL = 5000;
990990
private ArrayList<Long> timeList = new ArrayList<Long>();
991+
991992
private void method18() {
992993

993-
int COUNT= 5;
994-
int TIME_ALL=3000;
995-
ArrayList<Long> timeList = new ArrayList<Long>();
996-
ArrayList<Long> allList = new ArrayList<Long>();
994+
final int COUNT = 5;
995+
final int TIME_ALL = 3000;
996+
final ArrayList<Long> timeList = new ArrayList<Long>();
997+
final ArrayList<Long> allList = new ArrayList<Long>();
997998

998999
RxView.clicks(findViewById(R.id.iv_image))
9991000
.map(new Func1<Void, Long>() {

0 commit comments

Comments
 (0)