Skip to content

Commit f023a10

Browse files
committed
Fixed OperationSubscribeOn so OperationConditionalsTest works again.
1 parent dc15e2b commit f023a10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rxjava-core/src/main/java/rx/operators/OperationSubscribeOn.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public void unsubscribe() {
8484
public void call(Inner inner) {
8585
underlying.unsubscribe();
8686
// tear down this subscription as well now that we're done
87-
inner.unsubscribe();
87+
// inner.unsubscribe();
8888
}
8989
});
9090
}

0 commit comments

Comments
 (0)