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 Zz<caret>
}
}
interface Zzoo {
void run();
class Impl implements Zzoo {}
}
@@ -0,0 +1,11 @@
class Foo {
{
Zzoo.Impl l = new Zzoo<caret>
}
}
interface Zzoo {
void run();
class Impl implements Zzoo {}
}
@@ -1,6 +1,6 @@
class Foo {
{
Zzoo l = new Zzoo<caret>
Zzoo l = new Zzoo()<caret>
}
}
@@ -0,0 +1,9 @@
class Foooo {
interface Bar {}
}
class Bar {
{
Foooo c = new Fooo<caret>
}
}
@@ -0,0 +1,9 @@
class Foooo {
interface Bar {}
}
class Bar {
{
Foooo c = new Foooo()<caret>
}
}