mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 14:01:41 +07:00
GitOrigin-RevId: a6a8dc2ace656f221b3de93ac17e522836baca51
10 lines
232 B
Java
10 lines
232 B
Java
// "Remove 'CloneDoesntCallSuperClone' suppression" "false"
|
|
|
|
class NoSuperCall {
|
|
@SuppressWarnings("CloneDoesntCa<caret>llSuperClone")
|
|
@Override
|
|
public Object clone() throws CloneNotSupportedException {
|
|
return null;
|
|
}
|
|
|
|
} |