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 201977

Summary: [push down field] introduces behavioral change: Incorrect transformation
Product: java Reporter: GustavoSoares
Component: RefactoringAssignee: Jan Becicka <jbecicka>
Status: RESOLVED WONTFIX    
Severity: normal    
Priority: P4    
Version: 7.0.1   
Hardware: PC   
OS: Mac OS X   
Issue Type: DEFECT Exception Reporter:

Description GustavoSoares 2011-09-12 01:28:28 UTC
Create the classes:

package p2;
public class C {
  public int f=10;
}

package p2;
import p1.*;
public class B extends A {
  public long test(){
    return this.f;
  }
}

package p1;
import p2.*;
public class A extends C {
  protected int f=11;
}

apply the push down field refactoring to f 

package p2;
public class C {
  public int f=10;
}

package p2;
import p1.*;
public class B extends A {
  public long test(){
    return this.f;
  }
}

package p1;
import p2.*;
public class A extends C {
}

The transformation changes behavior. After the transformation the test method returns 10 instead of 11
Comment 1 Martin Balin 2016-07-07 07:18:50 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