View Javadoc
1   /*
2   SuperClone
3   
4   
5   */
6   
7   package com.puppycrawl.tools.checkstyle.checks.coding.superclone;
8   
9   public class InputSuperCloneWithoutWarnings {
10      @Override
11      protected final Object clone() throws CloneNotSupportedException {
12          return new InputSuperCloneWithoutWarnings();
13      }
14  }