override/implement completion: show short types, not raw (IDEA-CR-19511)

This commit is contained in:
peter
2017-03-27 17:39:24 +02:00
parent f9e4cd70c8
commit 7372d02347
3 changed files with 30 additions and 3 deletions
@@ -0,0 +1,13 @@
import java.util.List;
class Foo implements Bar {
methW<caret>
}
interface Bar {
<K> void methodWithTypeParam(K k);
void methodWithGenerics(List<String> k);
}