Reconstructed too many codes

This commit is contained in:
huanghongxun
2015-12-09 21:03:56 +08:00
parent 8e2fa57868
commit a436e10d93
38 changed files with 606 additions and 822 deletions

View File

@@ -55,12 +55,7 @@ public class OperationSubscribeOn {
@Override
public void unsubscribe() {
scheduler.schedule(new Action0() {
@Override
public void call() {
underlying.unsubscribe();
}
});
scheduler.schedule(underlying::unsubscribe);
}
}