File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/nl/uu/cs/ape/solver/solutionStructure Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
@@ -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 }
You can’t perform that action at this time.
0 commit comments