mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
automatically rename overloads (IDEA-131926)
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
package p;
|
||||
|
||||
class Foo {
|
||||
void bar() {}
|
||||
void bar(int i){
|
||||
bar();
|
||||
}
|
||||
|
||||
{
|
||||
bar();
|
||||
bar(1);
|
||||
}
|
||||
}
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
package p;
|
||||
|
||||
class Foo {
|
||||
void foo() {}
|
||||
void foo(int i){
|
||||
foo();
|
||||
}
|
||||
|
||||
{
|
||||
foo();
|
||||
foo(1);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user