mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
do not replace type with immediate type without necessity (IDEA-56926)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
class A {
|
||||
class B {
|
||||
}
|
||||
|
||||
class C {
|
||||
void testHere() {
|
||||
B vari = new B();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
class A {
|
||||
class B {
|
||||
}
|
||||
|
||||
class C {
|
||||
void testHere() {
|
||||
new <caret>B()
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user