Skip to content

Commit

Permalink
Switch usage of Observable.finallyDo to Observable.doAfterTerminate
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Jacobs committed Jul 7, 2016
1 parent 4b7c4a1 commit 48f0eac
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2757,7 +2757,7 @@ public Boolean call(Boolean b) {
return b;
}

}).finallyDo(new Action0() {
}).doAfterTerminate(new Action0() {

@Override
public void call() {
Expand Down Expand Up @@ -2807,7 +2807,7 @@ public Boolean call(Boolean b) {
return b;
}

}).finallyDo(new Action0() {
}).doAfterTerminate(new Action0() {

@Override
public void call() {
Expand Down Expand Up @@ -2857,7 +2857,7 @@ public Boolean call(Boolean b) {
return b;
}

}).finallyDo(new Action0() {
}).doAfterTerminate(new Action0() {

@Override
public void call() {
Expand Down

0 comments on commit 48f0eac

Please sign in to comment.