Skip to content

Commit 0ea441c

Browse files
Fix the descriptive workflow title
1 parent 6ef38af commit 0ea441c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/nl/uu/cs/ape/solver/solutionStructure/SolutionWorkflow.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ public String getDescriptiveName() {
315315
StringBuilder descrName = new StringBuilder();
316316
this.moduleNodes
317317
.forEach(moduleNode -> descrName.append(moduleNode.getUsedModule().getPredicateLabel()).append("->"));
318-
descrName.delete(descrName.length() - 1, descrName.length());
318+
descrName.delete(descrName.length() - 2, descrName.length());
319319
return descrName.toString();
320320
}
321321

0 commit comments

Comments
 (0)