poptreeitem fix

This commit is contained in:
Jindra Petk
2013-04-13 18:25:48 +02:00
parent e9d0900908
commit 116bf760f0
12 changed files with 58 additions and 17 deletions

View File

@@ -1423,8 +1423,10 @@ public class Graph {
localDataList.add(o);
}
for (GraphTargetItem ti : tree) {
ret.append(ti.toStringSemicoloned(localDataList));
ret.append("\r\n");
if (!ti.isEmpty()) {
ret.append(ti.toStringSemicoloned(localDataList));
ret.append("\r\n");
}
}
String parts[] = ret.toString().split("\r\n");
ret = new StringBuilder();