mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
change signature: do not show conflicts about non-changed param names
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
class D {
|
||||
void f<caret>oo(Object o){}
|
||||
}
|
||||
|
||||
class DImpl extends D {
|
||||
void foo(Object o1) {
|
||||
super.foo(o1);
|
||||
int o = 0;
|
||||
System.out.println(o);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
class D {
|
||||
void foo(Object o, boolean b){}
|
||||
}
|
||||
|
||||
class DImpl extends D {
|
||||
void foo(Object o1, boolean b) {
|
||||
super.foo(o1, b);
|
||||
int o = 0;
|
||||
System.out.println(o);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user