View Javadoc
1   package org.checkstyle.suppressionxpathfilter.nestedifdepth;
2   
3   public class InputXpathNestedIfDepth {
4       public void test() {
5           int a = 1;
6           int b = 2;
7           int c = 3;
8           if (a > b) {
9               if (c > b) {
10                  if (c > a) { //warn
11  
12                  }
13              }
14          }
15      }
16  }