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 201147 - [Pull up method] The method is not visible (compilation error)
Summary: [Pull up method] The method is not visible (compilation error)
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:
: 233634 (view as bug list)
Depends on:
Blocks:
 
Reported: 2011-08-20 02:27 UTC by rohitgheyi
Modified: 2016-07-07 07:18 UTC (History)
1 user (show)

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 02:27:32 UTC
NetBeans IDE 7.0.1 (Build 201107282000)

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

package p2;
public class C {
  protected long k(long a) {
    return 3;
  }
}

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

package p2;
import p1.*;
public class B extends A {
  public long m() {
    return new C().k(2);
  }
  public long k(int a) {
    return 1;
  }
  public long test() {
    return m();
  }
}

Pull Up Method refactoring produces the uncompilable code below:

package p2;
public class C {
  protected long k(long a) {
    return 3;
  }
}

package p1;
import p2.*;
public class A extends C {
  public long m() {
    return new C().k(2);
  }
}

package p2;
import p1.*;
public class B extends A {
  public long k(int a) {
    return 1;
  }
  public long test() {
    return m();
  }
}
Comment 1 Jiri Prox 2013-11-12 08:45:54 UTC
*** Bug 233634 has been marked as a duplicate of this bug. ***
Comment 2 Martin Balin 2016-07-07 07:18:51 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