View Javadoc
1   package org.checkstyle.suppressionxpathfilter.rightcurly;
2   
3   public class InputXpathRightCurlyOne {
4       public void test(int x) {
5           if (x > 0)
6           {
7               return;
8           } //warn
9           else if (x < 0) {
10              ;
11          }
12      }
13  }