IDEA-96387 Code completion popup prefers unimported static method to local variable when appending to a string literal

This commit is contained in:
peter
2012-12-05 11:54:41 +01:00
parent efc263cd5e
commit bf416e5f9a
3 changed files with 15 additions and 20 deletions
@@ -0,0 +1,8 @@
import java.lang.String;
public class Foo {
void foo(Object vx) {
String s = "" + v<caret>
}
}