Skip to content

Commit ff64273

Browse files
remove warnings and cleanup
1 parent c0ec61f commit ff64273

File tree

3 files changed

+178
-182
lines changed

3 files changed

+178
-182
lines changed

rxjava-core/src/main/java/rx/Notification.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public boolean equals(Object obj) {
149149
return true;
150150
if (obj.getClass() != getClass())
151151
return false;
152-
Notification notification = (Notification) obj;
152+
Notification<?> notification = (Notification<?>) obj;
153153
if (notification.getKind() != getKind())
154154
return false;
155155
if (hasValue() && !getValue().equals(notification.getValue()))

0 commit comments

Comments
 (0)