matthiasblaesing commented on code in PR #5155:
URL: https://github.com/apache/netbeans/pull/5155#discussion_r1057350989


##########
ide/git/src/org/netbeans/modules/git/ui/tag/ManageTagsAction.java:
##########
@@ -47,24 +47,34 @@
 public class ManageTagsAction extends SingleRepositoryAction {
 
     private static final Logger LOG = 
Logger.getLogger(ManageTagsAction.class.getName());
+    private static final String ICON_RESOURCE = 
"org/netbeans/modules/git/resources/icons/tags.png"; //NOI18N
+
+    public ManageTagsAction() {
+        super(ICON_RESOURCE);
+    }
+
+    @Override
+    protected String iconResource() {
+        return ICON_RESOURCE;
+    }
 
     @Override
-    protected void performAction (File repository, File[] roots, VCSContext 
context) {
+    protected void performAction(File repository, File[] roots, VCSContext 
context) {

Review Comment:
   The formatting changes here and below should be reverted.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

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

Reply via email to