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 201167

Summary: [Pull Up Method] Cannot find symbol due to super (compilation error)
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 19:21:06 UTC
NetBeans IDE 7.0.1 (Build 201107282000)

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

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();
  }
}

Pull Up Method refactoring produces the uncompilable code below:

public class A  {
  public int k() {
    return 1; 
  }
  public int m() {
    return super.k();
  }   
}
public class B extends A {
  public int k() {
    return 2;
  }
  public int test() {
    return m();
  }
}
Comment 1 Martin Balin 2016-07-07 07:16:40 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