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