mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
reinit type selection manager after exprs invalidation (IDEA-72129)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
public class Derr {
|
||||
|
||||
public static void main(String[] args) {
|
||||
long value;
|
||||
|
||||
value = new Lo<caret>ng(1);
|
||||
value = new Long(1);
|
||||
value = new Long(1);
|
||||
}
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
public class Derr {
|
||||
|
||||
public static final Long ONE = new Long(1);
|
||||
|
||||
public static void main(String[] args) {
|
||||
long value;
|
||||
|
||||
value = ONE;
|
||||
value = ONE;
|
||||
value = ONE;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user