avoiding problems which where due to a fix for ticket #3822
authorAndreas Kohlbecker <a.kohlbecker@bgbm.org>
Mon, 17 Mar 2014 22:03:02 +0000 (22:03 +0000)
committerAndreas Kohlbecker <a.kohlbecker@bgbm.org>
Mon, 17 Mar 2014 22:03:02 +0000 (22:03 +0000)
eu.etaxonomy.taxeditor.navigation/src/main/java/eu/etaxonomy/taxeditor/navigation/navigator/TaxonNavigator.java

index 99653c5bd38263141f754f3180265bbe7c9376f6..aee9e5f1f293315c0546572ea0589451860a625f 100644 (file)
@@ -118,7 +118,9 @@ public class TaxonNavigator extends CommonNavigator implements
                if(getConversationHolder() != null){
                        getConversationHolder().bind();
                        //FIXME : Need to make sure this is a stable fix (ticket 3822)
-                       getConversationHolder().commit();
+                       if(!getConversationHolder().isCompleted()){
+                           getConversationHolder().commit();
+                       }
                }
                getCommonViewer().refresh();
        }