Github user andrea-patricelli commented on a diff in the pull request:
https://github.com/apache/syncope/pull/81#discussion_r210288384
--- Diff:
ide/netbeans/src/main/java/org/apache/syncope/ide/netbeans/view/ResourceExplorerTopComponent.java
---
@@ -377,11 +403,79 @@ public void actionPerformed(final ActionEvent e) {
mailTemplateManagerService.setFormat(name,
MailTemplateFormat.TEXT,
IOUtils.toInputStream("//Enter Content
here", encodingPattern));
- try {
openMailEditor(name);
- } catch (IOException ex) {
- Exceptions.printStackTrace(ex);
- }
+ } else if
((parent.getUserObject().equals(PluginConstants.GROOVY_SCRIPTS))) {
--- End diff --
Invert equals.
---