Skip to content

Commit 16efc6b

Browse files
committed
refactor: applied spotlesss for formatting
1 parent 9b3bbce commit 16efc6b

File tree

1 file changed

+4
-2
lines changed
  • experimental/fluent/func/src/main/java/io/serverlessworkflow/fluent/func/dsl

1 file changed

+4
-2
lines changed

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)