IDEA-69745 Buggy completion for Point2D.Double and similar classes

This commit is contained in:
peter
2011-07-12 18:10:11 +02:00
parent 47a6fc0a41
commit 8cd9bc819f
5 changed files with 48 additions and 1 deletions
@@ -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;
}
}