Skip to content

Commit d7e27e3

Browse files
committed
refactor: applied spotlesss for formatting
Signed-off-by: amineis <amineidrissis12@gmail.com>
1 parent 42cf41b commit d7e27e3

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

  • experimental/fluent/func/src/main/java/io/serverlessworkflow/fluent/func/dsl

experimental/fluent/func/src/main/java/io/serverlessworkflow/fluent/func/dsl/FuncDSL.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,8 @@ public static <T, R> FuncCallStep<T, R> function(String name, Function<T, R> fn)
534534
* @param <R> output type
535535
* @return a named call step
536536
*/
537-
public static <T, R> FuncCallStep<T, R> function(String name, Function<T, R> fn, Class<T> inputClass) {
537+
public static <T, R> FuncCallStep<T, R> function(
538+
String name, Function<T, R> fn, Class<T> inputClass) {
538539
return new FuncCallStep<>(name, fn, inputClass);
539540
}
540541

@@ -624,7 +625,8 @@ public static <T> EmitStep emit(
624625
* @param <T> input type
625626
* @return an {@link EmitStep}
626627
*/
627-
public static <T> EmitStep emit(String type, Function<T, byte[]> serializer, Class<T> inputClass) {
628+
public static <T> EmitStep emit(
629+
String type, Function<T, byte[]> serializer, Class<T> inputClass) {
628630
return new EmitStep(null, eventBytes(type, serializer, inputClass));
629631
}
630632

0 commit comments

Comments
 (0)