View Javadoc
1   package org.checkstyle.suppressionxpathfilter.commentsindentation;
2   
3   public class InputXpathCommentsIndentationNonEmptyCase {
4       int n;
5   
6       public void foo() {
7           switch(n) {
8               case 1:
9                   if (true) {}
10                     // Comment // warn
11              default:
12          }
13      }
14  }