for expected class types insert the parentheses

This commit is contained in:
peter
2011-01-26 18:52:56 +01:00
parent 009015d5e5
commit a87d5fd8a6
7 changed files with 56 additions and 23 deletions
@@ -0,0 +1,11 @@
class Foo {
{
Zzoo.Impl l = new Zzoo<caret>
}
}
interface Zzoo {
void run();
class Impl implements Zzoo {}
}