Skip to content

Commit 41cd3d6

Browse files
Fix length of the label
1 parent 0ea441c commit 41cd3d6

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
@@ -327,7 +327,7 @@ public String getDescription() {
327327
.append(moduleNode.getUsedModule().getPredicateLabel())
328328
.append("\n");
329329
}
330-
descrName.delete(descrName.length() - 2, descrName.length());
330+
descrName.delete(descrName.length() - 1, descrName.length());
331331
return descrName.toString();
332332

333333
}

0 commit comments

Comments
 (0)