mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 01:50:56 +07:00
change signature: highest visibility should not return PUBLIC all at once (IDEA-111739)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
class Test {
|
||||
protected void fo<caret>o() {
|
||||
}
|
||||
}
|
||||
|
||||
class subclass extends Test {
|
||||
@Override
|
||||
protected void foo() {
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
class Test {
|
||||
void foo() {
|
||||
}
|
||||
}
|
||||
|
||||
class subclass extends Test {
|
||||
@Override
|
||||
protected void foo() {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user