Skip to content

Commit 8bcbeb5

Browse files
committed
Fix indentation
1 parent 92fe02d commit 8bcbeb5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/rx/Notification.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,10 +203,10 @@ public boolean equals(Object obj) {
203203
if (hasThrowable() && !getThrowable().equals(notification.getThrowable()))
204204
return false;
205205
if(!hasValue() && !hasThrowable() && notification.hasValue())
206-
return false;
206+
return false;
207207
if(!hasValue() && !hasThrowable() && notification.hasThrowable())
208-
return false;
209-
208+
return false;
209+
210210
return true;
211211
}
212212
}

0 commit comments

Comments
 (0)