View Javadoc
1   package com.google.checkstyle.test.chapter4formatting.rule42blockindentation;
2   
3   /** Some javadoc. */
4   public class InputFormattedIndentationCodeBlocks {
5     private static void test(int condition) {
6       {
7         System.out.println("True");
8       }
9     }
10  
11    {
12      System.out.println("False");
13    }
14  
15    {
16      System.out.println("False");
17    }
18  
19    class Inner {
20      void test() {
21        {
22          System.out.println("True");
23        }
24      }
25    }
26  }