Github user andrea-patricelli commented on a diff in the pull request:
https://github.com/apache/syncope/pull/81#discussion_r210284819
--- Diff:
ide/netbeans/src/main/java/org/apache/syncope/ide/netbeans/view/ResourceExplorerTopComponent.java
---
@@ -363,11 +383,17 @@ private void folderRightClickAction(final MouseEvent
evt,
@Override
public void actionPerformed(final ActionEvent e) {
- String name = JOptionPane.showInputDialog("Enter Name");
+ try {
+ String name = "" ;
+ while (name.equals("")) {
--- End diff --
Use `name.isEmpty()` instead
---