prefer null and new to the void methods in expression context

This commit is contained in:
peter
2012-02-27 15:08:00 +01:00
parent 113f4887e3
commit 8f24ff6e79
3 changed files with 45 additions and 11 deletions
@@ -0,0 +1,11 @@
class Foo {
java.io.File f;
{
f = n<caret>
}
java.io.File noo() {}
Object noo2() {}
}