View Javadoc
1   package org.checkstyle.suppressionxpathfilter.nofinalizer;
2   
3   public class InputXpathNoFinalizerInner {
4       public static void doStuff() {
5           // some code here
6       }
7   
8       class InnerClass {
9   
10          @Override // warn
11          @Deprecated
12          protected void finalize() throws Throwable {
13  
14          }
15      }
16  }