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 201146

Summary: [Pull Up Field] Enable Field Hiding (behavioral change)
Product: java Reporter: rohitgheyi
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 rohitgheyi 2011-08-20 02:24:15 UTC
NetBeans IDE 7.0.1 (Build 201107282000)

Steps to reproduce: apply Pull Up Field refactoring on the following program:

public class A {
  long f=1;
}

public class B extends A {}

public class C extends B {
  int f=2;
  public long m() {
    return super.f;
  }
}

Pull Up Field 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 {
  long f=1;
}

public class B extends A {
  int f=2;
}

public class C extends B {
  public long m() {
    return super.f;
  }
}
Comment 1 Martin Balin 2016-07-07 07:19:11 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