Skip to content

Commit a76d3cd

Browse files
committed
Merge pull request reactive-streams#205 from reactive-streams/wip-correct-javadoc-√
Fixes javadoc issues to make the build Java8 compliant
2 parents da51499 + d75db98 commit a76d3cd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tck/src/main/java/org/reactivestreams/tck/TestEnvironment.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public TestEnvironment(long defaultTimeoutMillis) {
6262
* run the tests.
6363
*
6464
* The default timeout for all expect* methods will be obtained by either the env variable {@code DEFAULT_TIMEOUT_MILLIS}
65-
* or the default value ({@see TestEnvironment#DEFAULT_TIMEOUT_MILLIS}) will be used.
65+
* or the default value ({@link TestEnvironment#DEFAULT_TIMEOUT_MILLIS}) will be used.
6666
*
6767
* @param printlnDebug if true, signals such as OnNext / Request / OnComplete etc will be printed to standard output,
6868
* often helpful to pinpoint simple race conditions etc.
@@ -78,7 +78,7 @@ public TestEnvironment(boolean printlnDebug) {
7878
* run the tests.
7979
*
8080
* The default timeout for all expect* methods will be obtained by either the env variable {@code DEFAULT_TIMEOUT_MILLIS}
81-
* or the default value ({@see TestEnvironment#DEFAULT_TIMEOUT_MILLIS}) will be used.
81+
* or the default value ({@link TestEnvironment#DEFAULT_TIMEOUT_MILLIS}) will be used.
8282
*/
8383
public TestEnvironment() {
8484
this(envDefaultTimeoutMillis());

tck/src/main/java/org/reactivestreams/tck/WithHelperPublisher.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ public abstract class WithHelperPublisher<T> {
2323
* Implement this method to match your expected element type.
2424
* In case of implementing a simple Subscriber which is able to consume any kind of element simply return the
2525
* incoming {@code element} element.
26-
* <p/>
26+
* <p>
2727
* Sometimes the Subscriber may be limited in what type of element it is able to consume, this you may have to implement
2828
* this method such that the emitted element matches the Subscribers requirements. Simplest implementations would be
2929
* to simply pass in the {@code element} as payload of your custom element, such as appending it to a String or other identifier.
30-
* <p/>
30+
* <p>
3131
* <b>Warning:</b> This method may be called concurrently by the helper publisher, thus it should be implemented in a
3232
* thread-safe manner.
3333
*

0 commit comments

Comments
 (0)