File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
rxjava-core/src/main/java/rx Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4285,10 +4285,10 @@ public Subscription call(final Observer<String> observer) {
4285
4285
4286
4286
@ Override
4287
4287
public void run () {
4288
+ counter .incrementAndGet ();
4288
4289
System .out .println ("published observable being executed" );
4289
4290
observer .onNext ("one" );
4290
4291
observer .onCompleted ();
4291
- counter .incrementAndGet ();
4292
4292
}
4293
4293
}).start ();
4294
4294
return subscription ;
@@ -4345,10 +4345,10 @@ public Subscription call(final Observer<String> observer) {
4345
4345
4346
4346
@ Override
4347
4347
public void run () {
4348
+ counter .incrementAndGet ();
4348
4349
System .out .println ("published observable being executed" );
4349
4350
observer .onNext ("one" );
4350
4351
observer .onCompleted ();
4351
- counter .incrementAndGet ();
4352
4352
}
4353
4353
}).start ();
4354
4354
return subscription ;
Original file line number Diff line number Diff line change @@ -83,10 +83,10 @@ public Subscription call(final Observer<String> observer) {
83
83
84
84
@ Override
85
85
public void run () {
86
+ counter .incrementAndGet ();
86
87
System .out .println ("published observable being executed" );
87
88
observer .onNext ("one" );
88
89
observer .onCompleted ();
89
- counter .incrementAndGet ();
90
90
}
91
91
}).start ();
92
92
return subscription ;
You can’t perform that action at this time.
0 commit comments