This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 236797 - Hint to remove superfluous "public abstract" modifier from interface methods
Summary: Hint to remove superfluous "public abstract" modifier from interface methods
Status: RESOLVED DUPLICATE of bug 184673
Alias: None
Product: java
Classification: Unclassified
Component: Hints (show other bugs)
Version: 7.4
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Svata Dedic
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-10-05 14:10 UTC by markiewb
Modified: 2013-11-25 23:19 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description markiewb 2013-10-05 14:10:53 UTC
Provide a hint to remove superfluous modifiers from interface methods.

Example:
<code>
    interface IBar {
        public abstract void getFooA();
        abstract void getFooB();
        public void getFooC();
    }
</code>
can be transformed into
<code>
    interface IBar {
        void getFooA();
        void getFooB();
        void getFooC();
    }
</code>



Related to https://netbeans.org/bugzilla/show_bug.cgi?id=137431
Comment 1 markiewb 2013-11-16 11:22:20 UTC
FYI: Fixed in 1.1.0 of the additional hints plugin https://github.com/markiewb/nb-additional-hints/issues/14
Comment 2 markiewb 2013-11-25 23:19:50 UTC

*** This bug has been marked as a duplicate of bug 184673 ***