mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
enable var type change when method is called on qualifier (IDEA-190067)
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
// "Change field 'f' type to 'java.lang.String'" "true"
|
||||
class Test {
|
||||
String f;
|
||||
void foo(A a) {
|
||||
a.foo(f);
|
||||
}
|
||||
}
|
||||
|
||||
class A {
|
||||
void foo(String s) {}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
// "Change field 'f' type to 'java.lang.String'" "true"
|
||||
class Test {
|
||||
int f;
|
||||
void foo(A a) {
|
||||
a.foo(<caret>f);
|
||||
}
|
||||
}
|
||||
|
||||
class A {
|
||||
void foo(String s) {}
|
||||
}
|
||||
Reference in New Issue
Block a user