mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
introduce field: selected type should be used instead of local variable type
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
public class FieldTest {
|
||||
public final int integer;
|
||||
|
||||
void foo() {
|
||||
integer = new Integer(0);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
public class FieldTest {
|
||||
void foo() {
|
||||
Integer <selection>ii</selection> = new Integer(0);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user