X Tutup
Skip to content

Commit 509e193

Browse files
committed
Misformatted code
1 parent f6f6ca1 commit 509e193

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/java/itrx/chapter1/UnsubscribingExample.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ public class UnsubscribingExample {
1818
public void exampleUnsubscribe() {
1919
Subject<Integer, Integer> values = ReplaySubject.create();
2020
Subscription subscription = values.subscribe(
21-
v -> System.out.println(v), e -> System.err.println(e),
21+
v -> System.out.println(v),
22+
e -> System.err.println(e),
2223
() -> System.out.println("Done"));
2324
values.onNext(0);
2425
values.onNext(1);

0 commit comments

Comments
 (0)
X Tutup