do not suggest to replace with diamond for anonymous inner class (IDEA-70258)

This commit is contained in:
anna
2011-05-26 19:22:41 +04:00
parent 8d61f83fd4
commit 4d1a5f247b
2 changed files with 15 additions and 8 deletions
@@ -0,0 +1,7 @@
// "Replace with <>" "false"
class Test {
class DiamondTest<T> {
DiamondTest<String> s = new DiamondTest<St<caret>ring>(){
}; // anonymous inner class
}
}