mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
change variable type should be suggested on calls [roma]
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
// "Change 'i' type to 'java.lang.String'" "true"
|
||||
|
||||
class Ex{
|
||||
void foo(String i) {
|
||||
bar(i);
|
||||
}
|
||||
void bar(String s) {}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "Change 'i' type to 'java.lang.String'" "true"
|
||||
|
||||
class Ex{
|
||||
void foo(int i) {
|
||||
bar(<caret>i);
|
||||
}
|
||||
void bar(String s) {}
|
||||
}
|
||||
Reference in New Issue
Block a user