View Javadoc
1   package org.checkstyle.suppressionxpathfilter.unusedlocalvariable;
2   
3   import java.util.function.Predicate;
4   
5   public class InputXpathUnusedLocalVariableTwo {
6   
7       int b = 21;
8   
9       void foo() {
10          int b = 12; // warn
11          a(this.b);
12      }
13  
14      static void a(int a) {
15      }
16  
17  }