suppress possible heap pollution with unchecked id (IDEA-66066)

This commit is contained in:
anna
2011-03-09 20:53:20 +01:00
parent 3b8b505304
commit c61a0360a7
4 changed files with 70 additions and 31 deletions
@@ -0,0 +1,11 @@
// "Remove redundant "unchecked" suppression" "false"
@SuppressWarnings({"unc<caret>hecked", "bla-blah-toolid"})
public enum Planet {
MERCURY(),
VENUS();
<T> Planet(T... ts) {
}
}