File tree Expand file tree Collapse file tree 4 files changed +0
-10
lines changed
api/src/main/java/io/serverlessworkflow/api/deserializers
diagram/src/main/java/io/serverlessworkflow/diagram/utils Expand file tree Collapse file tree 4 files changed +0
-10
lines changed Original file line number Diff line number Diff line change 24
24
import io .serverlessworkflow .api .cron .Cron ;
25
25
import io .serverlessworkflow .api .interfaces .WorkflowPropertySource ;
26
26
import io .serverlessworkflow .api .schedule .Schedule ;
27
- import org .slf4j .Logger ;
28
- import org .slf4j .LoggerFactory ;
29
27
30
28
import java .io .IOException ;
31
29
32
30
public class ScheduleDeserializer extends StdDeserializer <Schedule > {
33
31
34
32
private static final long serialVersionUID = 510l ;
35
- private static Logger logger = LoggerFactory .getLogger (ScheduleDeserializer .class );
36
33
37
34
private WorkflowPropertySource context ;
38
35
Original file line number Diff line number Diff line change 24
24
import io .serverlessworkflow .api .interfaces .WorkflowPropertySource ;
25
25
import io .serverlessworkflow .api .schedule .Schedule ;
26
26
import io .serverlessworkflow .api .start .Start ;
27
- import org .slf4j .Logger ;
28
- import org .slf4j .LoggerFactory ;
29
27
30
28
import java .io .IOException ;
31
29
32
30
public class StartDefinitionDeserializer extends StdDeserializer <Start > {
33
31
34
32
private static final long serialVersionUID = 510l ;
35
- private static Logger logger = LoggerFactory .getLogger (StartDefinitionDeserializer .class );
36
33
37
34
private WorkflowPropertySource context ;
38
35
Original file line number Diff line number Diff line change 24
24
import io .serverlessworkflow .api .interfaces .WorkflowPropertySource ;
25
25
import io .serverlessworkflow .api .produce .ProduceEvent ;
26
26
import io .serverlessworkflow .api .transitions .Transition ;
27
- import org .slf4j .Logger ;
28
- import org .slf4j .LoggerFactory ;
29
27
30
28
import java .io .IOException ;
31
29
import java .util .ArrayList ;
34
32
public class TransitionDeserializer extends StdDeserializer <Transition > {
35
33
36
34
private static final long serialVersionUID = 510l ;
37
- private static Logger logger = LoggerFactory .getLogger (TransitionDeserializer .class );
38
35
39
36
private WorkflowPropertySource context ;
40
37
Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ public class WorkflowDiagramUtils {
32
32
public static final String description = " : " ;
33
33
public static final String title = "title " ;
34
34
public static final String footer = "center footer Serverless Workflow Specification - serverlessworkflow.io" ;
35
- public static final String legendStart = new StringBuffer ().append ("legend top center" ).append (System .lineSeparator ()).toString ();
36
35
public static final String legendEnd = new StringBuffer ().append (System .lineSeparator ()).append ("endlegend" ).toString ();
37
36
public static final String stateDef = "state " ;
38
37
public static final String stateAsName = " as " ;
You can’t perform that action at this time.
0 commit comments