mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-30 15:53:32 +07:00
bb650d3c68
GitOrigin-RevId: 3d1332fd4cdb1bdd39c26de6713cf6f464fc61e3
9 lines
184 B
Java
9 lines
184 B
Java
// "Remove 'CloneDoesntCallSuperClone' suppression" "true"
|
|
|
|
class NoSuperCall {
|
|
@Override
|
|
public Object clone() throws CloneNotSupportedException {
|
|
return super.clone();
|
|
}
|
|
|
|
} |