mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
pull up conflicts: method2abstract used private method moved to superclass (IDEA-56133)
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
public abstract class Test {
|
||||
abstract void x();
|
||||
|
||||
private void xx(){}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
public class TestSubclass extends Test {
|
||||
@java.lang.Override
|
||||
void x() {
|
||||
xx();
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
public class Test {
|
||||
void x() {
|
||||
xx();
|
||||
}
|
||||
|
||||
private void xx(){}
|
||||
}
|
||||
Reference in New Issue
Block a user