aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/coding/superclone/InputSuperCloneWithoutWarnings.java
blob: afc0740c36924dea4cd712f6b002eb2dfad89b1e (plain)
1
2
3
4
5
6
7
8
package com.puppycrawl.tools.checkstyle.checks.coding.superclone;

public class InputSuperCloneWithoutWarnings {
    @Override
    protected final Object clone() throws CloneNotSupportedException {
        return new InputSuperCloneWithoutWarnings();
    }
}