mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-69745 Buggy completion for Point2D.Double and similar classes
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import java.awt.geom.Point2D;
|
||||
|
||||
class UTest {
|
||||
|
||||
void foo() {
|
||||
Point2D.Double d = new Point2D.Double();<caret>
|
||||
}
|
||||
|
||||
void bar() {
|
||||
Double d;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
import java.awt.geom.Point2D;
|
||||
|
||||
class UTest {
|
||||
|
||||
void foo() {
|
||||
Point2D.Double d = new <caret>
|
||||
}
|
||||
|
||||
void bar() {
|
||||
Double d;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user