You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@netbeans.apache.org by lk...@apache.org on 2018/11/10 00:12:14 UTC

[incubator-netbeans] branch master updated: [NETBEANS-1419] Fix assertion error on Java Projects when Edit JDK from popup menu.

This is an automated email from the ASF dual-hosted git repository.

lkishalmi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-netbeans.git


The following commit(s) were added to refs/heads/master by this push:
     new 0b002fa  [NETBEANS-1419] Fix assertion error on Java Projects when Edit JDK from popup menu.
0b002fa is described below

commit 0b002fa641aea7cfd707a9ff5f08d19a18431971
Author: Laszlo Kishalmi <la...@gmail.com>
AuthorDate: Sat Nov 3 13:47:35 2018 -0700

    [NETBEANS-1419] Fix assertion error on Java Projects when Edit JDK from popup menu.
---
 .../netbeans/modules/java/api/common/project/ui/EditRootAction.java  | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/java/java.api.common/src/org/netbeans/modules/java/api/common/project/ui/EditRootAction.java b/java/java.api.common/src/org/netbeans/modules/java/api/common/project/ui/EditRootAction.java
index c926291..4cd4996 100644
--- a/java/java.api.common/src/org/netbeans/modules/java/api/common/project/ui/EditRootAction.java
+++ b/java/java.api.common/src/org/netbeans/modules/java/api/common/project/ui/EditRootAction.java
@@ -64,6 +64,11 @@ final class EditRootAction extends NodeAction {
         return new HelpCtx(PlatformNode.class);
     }
 
+    @Override
+    protected boolean asynchronous() {
+        return false;
+    }
+
 }
 
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@netbeans.apache.org
For additional commands, e-mail: commits-help@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists