Skip to content

Commit 4f915db

Browse files
committed
Apply spotless
Signed-off-by: Matheus Cruz <matheuscruz.dev@gmail.com>
1 parent e6a9b4d commit 4f915db

1 file changed

Lines changed: 2 additions & 9 deletions

File tree

  • experimental/fluent/func/src/test/java/io/serverlessworkflow/fluent/func

experimental/fluent/func/src/test/java/io/serverlessworkflow/fluent/func/FuncDSLTest.java

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
import java.nio.charset.StandardCharsets;
4747
import java.util.List;
4848
import java.util.Map;
49-
import java.util.concurrent.atomic.AtomicInteger;
5049
import org.junit.jupiter.api.DisplayName;
5150
import org.junit.jupiter.api.Test;
5251

@@ -463,14 +462,8 @@ void consume_step_then_task_name_sets_flow_directive() {
463462
FuncWorkflowBuilder.workflow("intelligent-newsletter")
464463
.tasks(
465464
consume("sendNewsletter", (String s) -> {}, String.class).then("otherTask"),
466-
function(
467-
"nextTask",
468-
String::strip,
469-
String.class),
470-
function(
471-
"otherTask",
472-
String::strip,
473-
String.class))
465+
function("nextTask", String::strip, String.class),
466+
function("otherTask", String::strip, String.class))
474467
.build();
475468

476469
List<TaskItem> items = wf.getDo();

0 commit comments

Comments
 (0)