Skip to content

Commit

Permalink
minor_revert
Browse files Browse the repository at this point in the history
  • Loading branch information
deepakarora3 committed Feb 10, 2024
1 parent 595441c commit 6a442a9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<groupId>com.americanexpress.unify.flowret</groupId>
<artifactId>unify-flowret</artifactId>
<version>1.5.0</version>
<version>1.6.0</version>
<packaging>jar</packaging>

<name>unify-flowret</name>
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Flowret is available as a jar file in Maven central with the following Maven coo
````pom
<groupId>com.americanexpress.unify.flowret</groupId>
<artifactId>unify-flowret</artifactId>
<version>1.5.0</version>
<version>1.6.0</version>
````

---
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -859,11 +859,6 @@ private RouteResponse executeRule(Route route) {
}

private StepResponse executeStep(Step step) {
String stepName = step.getName();
if (stepName.equals("start") == true) {
return new StepResponse(UnitResponseType.OK_PROCEED, null, null);
}

StepResponse sr = null;
ProcessContext pc = null;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ public String getName() {
public StepResponse executeStep() {
String compName = pc.getCompName();

if (compName.equals("start")) {
return new StepResponse(UnitResponseType.OK_PROCEED, "", "");
}

if (compName.equals("get_part_info")) {
return new StepResponse(UnitResponseType.OK_PROCEED, "", "");

Expand Down

0 comments on commit 6a442a9

Please sign in to comment.