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 {
2424 private Predicate <?> predicate ;
2525 private Optional <Class <?>> predicateClass ;
2626
27- public <T > Until withFunction (Predicate <T > predicate ) {
27+ public <T > UntilPredicate withPredicate (Predicate <T > predicate ) {
2828 this .predicate = predicate ;
2929 this .predicateClass = Optional .empty ();
3030 return this ;
3131 }
3232
33- public <T > Until withFunction (Predicate <T > predicate , Class <T > clazz ) {
33+ public <T > UntilPredicate withPredicate (Predicate <T > predicate , Class <T > clazz ) {
3434 this .predicate = predicate ;
3535 this .predicateClass = Optional .ofNullable (clazz );
3636 return this ;
You can’t perform that action at this time.
0 commit comments