suppressions: if @Generated found, mark as suppressed even if no @SuppressWarning is present (IDEA-158300)

This commit is contained in:
Anna.Kozlova
2016-07-11 18:05:00 +02:00
parent 750afb8497
commit 8eab2c79a4
3 changed files with 28 additions and 6 deletions
@@ -0,0 +1,9 @@
class Test {
static {
@javax.annotation.Generated
String noRedundantCastForGeneratedCode = (String) "";
}
}