Skip to content

Commit

Permalink
Polished fix for issue #482.
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsschmidt1337 committed Dec 31, 2016
1 parent 325e332 commit 486f02e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,9 @@ public static String fix(int lineNumber, String sort, String line, String text,
GData1 newSubfile = (GData1) DatParser
.parseLine(untransformedSubfile.getTransformedString(m, datFile, false) , datFile.getDrawPerLine_NOCLONE().getKey(subfileToFlip).intValue(), 0, 0.5f, 0.5f, 0.5f, 1f, View.DUMMY_REFERENCE, View.ID, View.ACCURATE_ID, datFile, false,
new HashSet<String>(), false).get(0).getGraphicalData();
datFile.getVertexManager().remove(untransformedSubfile);
text = QuickFixer.setLine(lineNumber + 1, newSubfile.toString(), text);
datFile.getVertexManager().remove(untransformedSubfile);
datFile.getVertexManager().remove(newSubfile);
}
}
break;
Expand Down

0 comments on commit 486f02e

Please sign in to comment.