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 237530 - [Refactor Push Down] Missing warning, that method will not be accessible
Summary: [Refactor Push Down] Missing warning, that method will not be accessible
Status: RESOLVED WONTFIX
Alias: None
Product: java
Classification: Unclassified
Component: Refactoring (show other bugs)
Version: 8.0
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Ralph Ruijs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-10-23 09:41 UTC by ssazonov
Modified: 2016-07-07 07:18 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 ssazonov 2013-10-23 09:41:19 UTC
1. Assume following 3 classes in same package:

package push;
public class ClassA {
    public void m1() {}
    public void m2() {}
}

package push;
public class ClassB extends ClassA {}

package push;
public class Call {
    public void m(){
        ClassA a = new ClassA();
        a.m1();
        a.m2();
    }
}

2. Call Push Down on method m1() and without any warning you'll get broken code:

package push;
public class ClassA {
    public void m2() {}
}

package push;
public class ClassB extends ClassA {
    public void m1() {}
}

package push;
public class Call {
    public void m(){
        ClassA a = new ClassA();
        a.m1();
        a.m2();
    }
}

>> there should be warning, that method m2() wil not be accessible from class Call "a.m2();"

Product Version: NetBeans IDE 7.4 (Build 201310111528)
Java: 1.7.0_45; Java HotSpot(TM) 64-Bit Server VM 24.45-b08
Runtime: Java(TM) SE Runtime Environment 1.7.0_45-b18
System: Windows 7 version 6.1 running on amd64; Cp1252; en_US (nb)
Comment 1 Martin Balin 2016-07-07 07:18:45 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