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 201164 - [Push Down Method] Super accesses changes to overloaded method (behavioral change)
Summary: [Push Down Method] Super accesses changes to overloaded method (behavioral ch...
Status: RESOLVED WONTFIX
Alias: None
Product: java
Classification: Unclassified
Component: Refactoring (show other bugs)
Version: 7.0.1
Hardware: PC Mac OS X
: P4 normal (vote)
Assignee: Jan Becicka
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-08-20 19:01 UTC by rohitgheyi
Modified: 2016-07-07 07:17 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 rohitgheyi 2011-08-20 19:01:10 UTC
NetBeans IDE 7.0.1 (Build 201107282000)

Steps to reproduce: apply Push Down Method refactoring on the following program:

public class A {
  public int k(long l) {
    return 1;
  }
}
public class B extends A {
  public int k(int i) {
    return 2;
  }
  public int m() {
    return super.k(2);
  }
}
public class C extends B {
  public int test() {
    return m();
  }
}



Push Down Method refactoring introduces a behavioral change. In the previous program, the method test yields 1. In the following program, the method test yields 2.



public class A {
  public int k(long l) {
    return 1;
  }
}
public class B extends A {
  public int k(int i) {
    return 2;
  }
}
public class C extends B {
  public int test() {
    return m();
  }
  public int m() {
    return super.k(2);
  }
}
Comment 1 Martin Balin 2016-07-07 07:17:45 UTC
This old bug may not be relevant anymore. If you can still reproduce it in 8.2 development builds please reopen this issue.

Thanks for your cooperation,
NetBeans IDE 8.2 Release Boss