This commit is contained in:
Bas Leijdekkers
2015-01-12 21:51:14 +01:00
parent 63d7b39e16
commit e33466198b
@@ -7,7 +7,7 @@ public class CloneInNonCloneableClass {
}
class AB {
@Override
protected Object <warning descr="'clone()' defined in non-Cloneable class 'AB'">clone</warning>() throws CloneNotSupportedException {
public Object <warning descr="'clone()' defined in non-Cloneable class 'AB'">clone</warning>() throws CloneNotSupportedException {
return super.clone();
}
}