File tree 2 files changed +4
-4
lines changed
tck/src/main/java/org/reactivestreams/tck
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ public TestEnvironment(long defaultTimeoutMillis) {
62
62
* run the tests.
63
63
*
64
64
* 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.
66
66
*
67
67
* @param printlnDebug if true, signals such as OnNext / Request / OnComplete etc will be printed to standard output,
68
68
* often helpful to pinpoint simple race conditions etc.
@@ -78,7 +78,7 @@ public TestEnvironment(boolean printlnDebug) {
78
78
* run the tests.
79
79
*
80
80
* 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.
82
82
*/
83
83
public TestEnvironment () {
84
84
this (envDefaultTimeoutMillis ());
Original file line number Diff line number Diff line change @@ -23,11 +23,11 @@ public abstract class WithHelperPublisher<T> {
23
23
* Implement this method to match your expected element type.
24
24
* In case of implementing a simple Subscriber which is able to consume any kind of element simply return the
25
25
* incoming {@code element} element.
26
- * <p/ >
26
+ * <p>
27
27
* Sometimes the Subscriber may be limited in what type of element it is able to consume, this you may have to implement
28
28
* this method such that the emitted element matches the Subscribers requirements. Simplest implementations would be
29
29
* 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>
31
31
* <b>Warning:</b> This method may be called concurrently by the helper publisher, thus it should be implemented in a
32
32
* thread-safe manner.
33
33
*
You can’t perform that action at this time.
0 commit comments