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 172344 - Rename refactoring leads to compilation error when applied on complex class hierarchy
Summary: Rename refactoring leads to compilation error when applied on complex class h...
Status: RESOLVED DUPLICATE of bug 172345
Alias: None
Product: java
Classification: Unclassified
Component: Refactoring (show other bugs)
Version: 6.x
Hardware: PC Linux
: P2 blocker (vote)
Assignee: issues@java
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-09-16 02:49 UTC by vilasshekharbj
Modified: 2009-09-16 03:05 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 vilasshekharbj 2009-09-16 02:49:56 UTC
Apply the rename refactoring on B.m() in the following code and rename it to 'p':

interface B {
  public B m();
}
interface C {
  public C m();
}
class A implements C, B {
  public A m(){
    A a=null;
    return a;
  }
}

The refactoring fails to detect that it should also rename C.m() and leads to the following code that does not compile:

interface B {
  public B p();
}
interface C {
  public C m();
}
class A implements C, B {
  public A p(){
    A a=null;
    return a;
  }
}
Comment 1 vilasshekharbj 2009-09-16 03:05:10 UTC

*** This issue has been marked as a duplicate of 172345 ***