mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
Before when removing more than one element, nextLeaf was invalid as well. The invalidation check below did not work as parent might still exist (element might be relinked to dummy file) Fixes IDEA-187531 "Add on demand static import" with intervening comment and an empty line breaks code
7 lines
112 B
Java
7 lines
112 B
Java
class Test {
|
|
public final Integer integer = new Integer(0);
|
|
|
|
void foo() {
|
|
Integer i = integer;
|
|
}
|
|
} |