Skip to content

Commit 3dc4a31

Browse files
committed
javadocs: remove leftover "@SInCE" annotations; add param description
1 parent 7181145 commit 3dc4a31

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

src/main/java/rx/Producer.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
/**
1919
* @warn javadoc description missing
20-
* @since 0.20
2120
*/
2221
public interface Producer {
2322

@@ -27,7 +26,6 @@ public interface Producer {
2726
*
2827
* @param n the maximum number of items you want this Producer to produce, or {@code Long.MAX_VALUE} if you
2928
* want the Producer to produce items at its own pace
30-
* @since 0.20
3129
*/
3230
public void request(long n);
3331

src/main/java/rx/Subscriber.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,6 @@ public final boolean isUnsubscribed() {
8080
* This method is invoked when the Subscriber and Observable have been connected but the Observable has
8181
* not yet begun to emit items or send notifications to the Subscriber. Override this method to add any
8282
* useful initialization to your subscription, for instance to initiate backpressure.
83-
*
84-
* @since 0.20
8583
*/
8684
public void onStart() {
8785
// do nothing by default
@@ -94,7 +92,6 @@ public void onStart() {
9492
*
9593
* @param n the maximum number of items you want the Observable to emit to the Subscriber at this time, or
9694
* {@code Long.MAX_VALUE} if you want the Observable to emit items at its own pace
97-
* @since 0.20
9895
*/
9996
protected final void request(long n) {
10097
Producer shouldRequest = null;
@@ -115,7 +112,6 @@ protected final void request(long n) {
115112
* @warn javadoc description missing
116113
* @warn param producer not described
117114
* @param producer
118-
* @since 0.20
119115
*/
120116
public void setProducer(Producer producer) {
121117
long toRequest;

src/main/java/rx/observers/TestSubscriber.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ public void onNext(T t) {
136136
/**
137137
* Allow calling the protected {@link #request(long)} from unit tests.
138138
*
139-
* @param n
140-
* @warn parameter "n" not described
139+
* @param n the maximum number of items you want the Observable to emit to the Subscriber at this time, or
140+
* {@code Long.MAX_VALUE} if you want the Observable to emit items at its own pace
141141
*/
142142
public void requestMore(long n) {
143143
request(n);

0 commit comments

Comments
 (0)