View Javadoc
1   package org.checkstyle.suppressionxpathfilter.requirethis;
2   
3   public class InputXpathRequireThisTwo {
4       void method1() {
5           int i = 3;
6       }
7   
8       void method2(int i) {
9           method1(); //warn
10      }
11  }