View Javadoc
1   package org.checkstyle.suppressionxpathfilter.indentation;
2   
3   public class InputXpathIndentationIfWithoutCurly {
4       void test() {
5           if (true)
6                   e();
7           if (true)
8           e(); // warn
9       }
10      void e() {};
11  }
12