ref #10067, ref #3722, ref #8127 remove null value handling from PolytomousKeyGraphCo...
authorAndreas Müller <a.mueller@bgbm.org>
Tue, 5 Jul 2022 11:51:49 +0000 (13:51 +0200)
committerAndreas Müller <a.mueller@bgbm.org>
Tue, 5 Jul 2022 11:52:17 +0000 (13:52 +0200)
eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/key/polytomous/PolytomousKeyGraphContentProvider.java

index b8d99052c3739d85f443925759b76671c761e302..c9cfb228c9ca8ec91ea9c8a5b57c95e03e688d88 100644 (file)
@@ -52,7 +52,7 @@ public class PolytomousKeyGraphContentProvider implements IGraphContentProvider
                List<PolytomousKeyNode> children;
 
                if (parent instanceof PolytomousKeyNode) {
-                       ((PolytomousKeyNode) parent).removeNullValueFromChildren();
+//                     ((PolytomousKeyNode) parent).removeNullValueFromChildren();
                        children = ((PolytomousKeyNode) parent).getChildren();
                } else if (parent instanceof PolytomousKey) {
                        children = new ArrayList<PolytomousKeyNode>();