Skip to content

Commit

Permalink
remove debug statements from unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
benjchristensen committed May 7, 2013
1 parent 93105a6 commit 4caf8f8
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions rxjava-core/src/main/java/rx/Observable.java
Original file line number Diff line number Diff line change
Expand Up @@ -4229,7 +4229,6 @@ public Subscription call(final Observer<String> observer) {
@Override
public void run() {
counter.incrementAndGet();
System.out.println("published observable being executed");
observer.onNext("one");
observer.onCompleted();
}
Expand All @@ -4246,7 +4245,6 @@ public void run() {
@Override
public void call(String v) {
assertEquals("one", v);
System.out.println("v: " + v);
latch.countDown();
}
});
Expand All @@ -4257,7 +4255,6 @@ public void call(String v) {
@Override
public void call(String v) {
assertEquals("one", v);
System.out.println("v: " + v);
latch.countDown();
}
});
Expand Down Expand Up @@ -4286,7 +4283,6 @@ public Subscription call(final Observer<String> observer) {
@Override
public void run() {
counter.incrementAndGet();
System.out.println("published observable being executed");
observer.onNext("one");
observer.onCompleted();
}
Expand All @@ -4308,7 +4304,6 @@ public void run() {
@Override
public void call(String v) {
assertEquals("one", v);
System.out.println("v: " + v);
latch.countDown();
}
});
Expand All @@ -4319,7 +4314,6 @@ public void call(String v) {
@Override
public void call(String v) {
assertEquals("one", v);
System.out.println("v: " + v);
latch.countDown();
}
});
Expand All @@ -4346,7 +4340,6 @@ public Subscription call(final Observer<String> observer) {
@Override
public void run() {
counter.incrementAndGet();
System.out.println("published observable being executed");
observer.onNext("one");
observer.onCompleted();
}
Expand All @@ -4364,7 +4357,6 @@ public void run() {
@Override
public void call(String v) {
assertEquals("one", v);
System.out.println("v: " + v);
latch.countDown();
}
});
Expand All @@ -4375,7 +4367,6 @@ public void call(String v) {
@Override
public void call(String v) {
assertEquals("one", v);
System.out.println("v: " + v);
latch.countDown();
}
});
Expand Down

0 comments on commit 4caf8f8

Please sign in to comment.