Skip to content

Commit b22ab40

Browse files
Fixing javadocs
ReactiveX#119 - added correct links to external images - cleaned up some of the text - improved some function memoization that was missed
1 parent d62238b commit b22ab40

4 files changed

Lines changed: 535 additions & 635 deletions

File tree

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
package rx;
1717

1818
/**
19-
* An object representing a notification sent to a Observable.
19+
* An object representing a notification sent to an {@link Observable}.
2020
*
2121
* For the Microsoft Rx equivalent see: http://msdn.microsoft.com/en-us/library/hh229462(v=vs.103).aspx
2222
*/
@@ -119,7 +119,7 @@ public boolean isOnNext() {
119119
public static enum Kind {
120120
OnNext, OnError, OnCompleted
121121
}
122-
122+
123123
@Override
124124
public String toString() {
125125
StringBuilder str = new StringBuilder("[").append(super.toString()).append(" ").append(getKind());
@@ -130,7 +130,7 @@ public String toString() {
130130
str.append("]");
131131
return str.toString();
132132
}
133-
133+
134134
@Override
135135
public int hashCode() {
136136
int hash = getKind().hashCode();
@@ -140,7 +140,7 @@ public int hashCode() {
140140
hash = hash * 31 + getException().hashCode();
141141
return hash;
142142
}
143-
143+
144144
@Override
145145
public boolean equals(Object obj) {
146146
if (obj == null)

0 commit comments

Comments
 (0)