ref #6971 Dispose input session when disposing editor
authorPatrick Plitzner <p.plitzner@bgbm.org>
Tue, 21 Nov 2017 13:34:24 +0000 (14:34 +0100)
committerPatrick Plitzner <p.plitzner@bgbm.org>
Tue, 21 Nov 2017 13:34:44 +0000 (14:34 +0100)
eu.etaxonomy.taxeditor.editor/src/main/java/eu/etaxonomy/taxeditor/editor/name/e4/TaxonNameEditorE4.java

index 420570b729197137ef23f3219a7536e48a9f031b..96ea0b6937ac7f00611dad831b1abf211b5518ed 100644 (file)
@@ -497,6 +497,9 @@ public class TaxonNameEditorE4 implements IConversationEnabled, IDirtyMarkable,
             conversation.unregisterForDataStoreChanges(this);
             conversation.close();
         }
+        if(input!=null){
+            input.dispose();
+        }
         eventBroker.post(WorkbenchEventConstants.CURRENT_ACTIVE_EDITOR, null);
        }