소스 검색

fixed concurrentModificationException when saving graphs

jascha Bohne 7 년 전
부모
커밋
e135661fdf
2개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 0
      scopviz/.gitignore
  2. 3 1
      scopviz/src/main/java/de/tu_darmstadt/informatik/tk/scopviz/io/GraphMLExporter.java

+ 1 - 0
scopviz/.gitignore

@@ -7,3 +7,4 @@
 /testImporter.graphml
 /asdf.fdsa
 /.DS_Store
+/mapping-exported

+ 3 - 1
scopviz/src/main/java/de/tu_darmstadt/informatik/tk/scopviz/io/GraphMLExporter.java

@@ -79,7 +79,9 @@ public class GraphMLExporter {
 		while (edges.hasNext()) {
 			Edge e = edges.next();
 			e.removeAttribute("ui.j2dsk");
-			for (String s : e.getEachAttributeKey()) {
+			String[] temp = new String[0];
+			temp = e.getAttributeKeySet().toArray(temp);
+			for (String s : temp) {
 				Class<? extends Object> c = e.getAttribute(s).getClass();
 				if (!c.isPrimitive() && !(c == String.class) && !(c == Character.class) && !(c == Boolean.class)
 						&& !(c == Integer.class) && !(c == Long.class) && !(c == Short.class) && !(c == Byte.class)