View Javadoc
1   package com.google.checkstyle.test.chapter4formatting.rule412nonemptyblocks;
2   
3   /** some javadoc. */
4   public class InputFormattedRightCurly {
5     /** some javadoc. */
6     public static void main(String[] args) {
7       boolean after = false;
8       try {
9         /* foo */
10      } finally {
11        after = true;
12      }
13    }
14  }