View Javadoc
1   package org.checkstyle.suppressionxpathfilter.executablestatementcount;
2   
3   public class InputXpathExecutableStatementCountCustomMax {
4       public InputXpathExecutableStatementCountCustomMax() // warn
5       {
6           int i = 1;
7           if (System.currentTimeMillis() == 0) {
8           } else if (System.currentTimeMillis() == 0) {
9           } else {
10          }
11      }
12      /** Empty constructor */
13      public InputXpathExecutableStatementCountCustomMax(int i) {}
14  }