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 - [rename method] Rename method of an interface does not detect that a method is also inherited from a class
Summary: [rename method] Rename method of an interface does not detect that a method i...
Status: RESOLVED DUPLICATE of bug 218973
Alias: None
Product: java
Classification: Unclassified
Component: Refactoring (show other bugs)
Version: 7.2.1
Hardware: PC Linux
: P3 normal (vote)
Assignee: Ralph Ruijs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-12-07 18:04 UTC by milos.gligoric
Modified: 2012-12-07 19:33 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 ***