File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
experimental/types/src/main/java/io/serverlessworkflow/api/types/func Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,13 @@ public class UntilPredicate extends Until {
24
24
private Predicate <?> predicate ;
25
25
private Optional <Class <?>> predicateClass ;
26
26
27
- public <T > Until withFunction (Predicate <T > predicate ) {
27
+ public <T > UntilPredicate withPredicate (Predicate <T > predicate ) {
28
28
this .predicate = predicate ;
29
29
this .predicateClass = Optional .empty ();
30
30
return this ;
31
31
}
32
32
33
- public <T > Until withFunction (Predicate <T > predicate , Class <T > clazz ) {
33
+ public <T > UntilPredicate withPredicate (Predicate <T > predicate , Class <T > clazz ) {
34
34
this .predicate = predicate ;
35
35
this .predicateClass = Optional .ofNullable (clazz );
36
36
return this ;
You can’t perform that action at this time.
0 commit comments