View Javadoc
1   package org.checkstyle.suppressionxpathfilter.npathcomplexity;
2   
3   public class InputXpathNPathComplexityMethod {
4       public void test() { //warn
5           while (true) {
6               if (1 > 0) {
7   
8               } else {
9   
10              }
11          }
12      }
13  }