fix Collections.emptyMap not being suggested in completion if jdk8 is used

This commit is contained in:
peter
2015-08-16 17:55:05 +02:00
parent 046fc164b4
commit 375bdad569
4 changed files with 25 additions and 14 deletions
@@ -0,0 +1,9 @@
import java.util.Collections;
import java.util.Map;
class Foo {
void m() {
Map<String, Integer> m = Collections.emptyMap();<caret>
}
}
@@ -0,0 +1,8 @@
import java.util.Map;
class Foo {
void m() {
Map<String, Integer> m = emptyM<caret>
}
}