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 201979 - [pull up method] introduces behavioral change: Change super to this
Summary: [pull up method] introduces behavioral change: Change super to this
Status: RESOLVED WONTFIX
Alias: None
Product: java
Classification: Unclassified
Component: Refactoring (show other bugs)
Version: 7.0.1
Hardware: PC Mac OS X
: P3 normal (vote)
Assignee: Ralph Ruijs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-09-12 02:16 UTC by GustavoSoares
Modified: 2015-09-17 11:15 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 GustavoSoares 2011-09-12 02:16:13 UTC
Create the classes:

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

apply the pull up method refactoring to m 

public class A  {
  public int k() {
    return 1; 
  }
  public int m() {
    return this.k();
  }   
}
public class B extends A {
  public int k() {
    return 2;
  }
  public int test() {
    return m();
  }
}

The transformation changes behavior. After the transformation the test method returns 2 instead of 1
Comment 1 Martin Balin 2015-09-17 11:15:48 UTC
Report from old NetBeans version. Due to code changes since it was reported likely not reproducible now. Feel free to reopen if happens in 8.0.2 or 8.1.