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 2424import io .serverlessworkflow .api .cron .Cron ;
2525import io .serverlessworkflow .api .interfaces .WorkflowPropertySource ;
2626import io .serverlessworkflow .api .schedule .Schedule ;
27- import org .slf4j .Logger ;
28- import org .slf4j .LoggerFactory ;
2927
3028import java .io .IOException ;
3129
3230public class ScheduleDeserializer extends StdDeserializer <Schedule > {
3331
3432 private static final long serialVersionUID = 510l ;
35- private static Logger logger = LoggerFactory .getLogger (ScheduleDeserializer .class );
3633
3734 private WorkflowPropertySource context ;
3835
Original file line number Diff line number Diff line change 2424import io .serverlessworkflow .api .interfaces .WorkflowPropertySource ;
2525import io .serverlessworkflow .api .schedule .Schedule ;
2626import io .serverlessworkflow .api .start .Start ;
27- import org .slf4j .Logger ;
28- import org .slf4j .LoggerFactory ;
2927
3028import java .io .IOException ;
3129
3230public class StartDefinitionDeserializer extends StdDeserializer <Start > {
3331
3432 private static final long serialVersionUID = 510l ;
35- private static Logger logger = LoggerFactory .getLogger (StartDefinitionDeserializer .class );
3633
3734 private WorkflowPropertySource context ;
3835
Original file line number Diff line number Diff line change 2424import io .serverlessworkflow .api .interfaces .WorkflowPropertySource ;
2525import io .serverlessworkflow .api .produce .ProduceEvent ;
2626import io .serverlessworkflow .api .transitions .Transition ;
27- import org .slf4j .Logger ;
28- import org .slf4j .LoggerFactory ;
2927
3028import java .io .IOException ;
3129import java .util .ArrayList ;
3432public class TransitionDeserializer extends StdDeserializer <Transition > {
3533
3634 private static final long serialVersionUID = 510l ;
37- private static Logger logger = LoggerFactory .getLogger (TransitionDeserializer .class );
3835
3936 private WorkflowPropertySource context ;
4037
Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ public class WorkflowDiagramUtils {
3232 public static final String description = " : " ;
3333 public static final String title = "title " ;
3434 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 ();
3635 public static final String legendEnd = new StringBuffer ().append (System .lineSeparator ()).append ("endlegend" ).toString ();
3736 public static final String stateDef = "state " ;
3837 public static final String stateAsName = " as " ;
You can’t perform that action at this time.
0 commit comments