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 223498

Summary: [rename method] Rename method of an interface does not detect that a method is also inherited from a class
Product: java Reporter: milos.gligoric
Component: RefactoringAssignee: Ralph Ruijs <ralphbenjamin>
Status: RESOLVED DUPLICATE    
Severity: normal    
Priority: P3    
Version: 7.2.1   
Hardware: PC   
OS: Linux   
Issue Type: DEFECT Exception Reporter:

Description milos.gligoric 2012-12-07 18:04:15 UTC
interface I {
    // Rename the following method to "m"
    public void setSeed(long seed);
}

class C1 extends Random implements I {
}



There is a compilation error: "C1 is not abstract and does not override abstract method m(long) in I"
Comment 1 Ralph Ruijs 2012-12-07 19:33:22 UTC

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