IDEA-54459 Smart type completion for anonymous class after 'new' inserts '{}' inside '()' if the class has two generic parameters

This commit is contained in:
peter
2010-05-17 14:54:27 +01:00
parent 2e1110eb3a
commit c9db4a5d12
4 changed files with 14 additions and 0 deletions
@@ -0,0 +1,5 @@
interface Function<X, Y> { }
class A {
private static final Function<String, String> a = new Function<String, String>() {
<caret>};
}
@@ -0,0 +1,4 @@
interface Function<X, Y> { }
class A {
private static final Function<String, String> a = new <caret>
}