Skip to content

Commit

Permalink
Add success simulation stage
Browse files Browse the repository at this point in the history
- Executable code
  • Loading branch information
SadaqueKhan committed Mar 2, 2020
1 parent 8146c8a commit ff1804d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/app/controller/SimulationController.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public void createSuccessSimulationStage(ConfigurationModel doubleClickConfigura
}

ArrayList<ConfigurationModel> successPathForward = new ArrayList<>();
for (int j = doubleClickConfiguration.getStep() - 1; j >= 0; j--) {
for (int j = doubleClickConfiguration.getStep(); j >= 0; j--) {
// whatever
successPathForward.add(successPathBackward.get(j));
}
Expand Down

0 comments on commit ff1804d

Please sign in to comment.