Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/redundantUncheckedVarargs/afterMerger.java
Anna Kozlova bb650d3c68 redundant suppressions on the fly: check alternative ids, old suppress ids (IDEA-223759)
GitOrigin-RevId: 3d1332fd4cdb1bdd39c26de6713cf6f464fc61e3
2019-10-01 10:11:58 +00:00

9 lines
184 B
Java

// "Remove 'CloneDoesntCallSuperClone' suppression" "true"
class NoSuperCall {
@Override
public Object clone() throws CloneNotSupportedException {
return super.clone();
}
}