View Javadoc
1   package org.checkstyle.suppressionxpathfilter.fallthrough;
2   
3   public class InputXpathFallThroughDefaultCase {
4       void methodFallThruCustomWords(int i, int j, boolean cond) {
5           while (true) {
6               switch (i){
7                   case 0:
8                       i++;
9                       break;
10                  default: //warn
11                      i++;
12              }
13          }
14      }
15  }