mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 21:44:49 +07:00
incompatible types quickfix: reregister for variable initializer (IDEA-138023)
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
// "Change field 'foo' type to 'java.lang.String[]'" "true"
|
||||
|
||||
class Base {
|
||||
private String[] foo;
|
||||
public void bar(String... args) {
|
||||
foo = args;
|
||||
}
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
// "Change field 'foo' type to 'java.lang.String[]'" "true"
|
||||
|
||||
class Base {
|
||||
private String foo;
|
||||
public void bar(String... args) {
|
||||
foo<caret> = args;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user