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 256691

Summary: Find Overriding Methods does not work for enum methods
Product: java Reporter: matthies <matthies>
Component: RefactoringAssignee: Ralph Ruijs <ralphbenjamin>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 8.1   
Hardware: PC   
OS: Windows 7   
Issue Type: DEFECT Exception Reporter:

Description matthies 2015-11-19 13:18:16 UTC
Example:

    public enum Test
    {
        TEST { @Override void test() { } };
        
        abstract void test();
    }

Performing "Find Overriding Methods" on test() finds no occurrences.