You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: framework/waterflow/java/waterflow-core/src/main/java/modelengine/fit/waterflow/domain/states/WhenHappen.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ public WhenHappen<O, D, I, F> when(Operators.Whether<I> whether, Operators.Then<
52
52
*
53
53
* @param processor The handler to process unmatched inputs.
54
54
* @return An {@link State} representing the join node of the conditional flow.
55
-
* @throws IllegalArgumentException if processor is null
55
+
* @throws IllegalArgumentException if processor is null.
56
56
*/
57
57
publicState<O, D, O, F> others(Operators.Then<I, O> processor) {
Copy file name to clipboardExpand all lines: framework/waterflow/java/waterflow-core/src/main/java/modelengine/fit/waterflow/domain/stream/nodes/To.java
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -100,8 +100,6 @@ public class To<I, O> extends IdGenerator implements Subscriber<I, O> {
Copy file name to clipboardExpand all lines: framework/waterflow/java/waterflow-core/src/main/java/modelengine/fit/waterflow/domain/stream/operators/Operators.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -298,8 +298,8 @@ public interface Validator<T> {
298
298
* This functional interface defines the processing operation that converts an
299
299
* input of one type to an output of potentially different type.
300
300
*
301
-
* @param <T> The type of raw material (input) to be processed
302
-
* @param <R> The type of product (output) to be produced
301
+
* @param <T> The type of raw material (input) to be processed.
302
+
* @param <R> The type of product (output) to be produced.
0 commit comments