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