aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputSynchronizedStatement.java
blob: 496e85147fd8a93ac18e14d2d8ad3aa485d7db71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.puppycrawl.tools.checkstyle.checks.indentation; //indent:0 exp:0


/**                                                                           //indent:0 exp:0
 * This test-input is intended to be checked using following configuration:   //indent:1 exp:1
 *                                                                            //indent:1 exp:1
 * arrayInitIndent = 4                                                        //indent:1 exp:1
 * basicOffset = 4                                                            //indent:1 exp:1
 * braceAdjustment = 0                                                        //indent:1 exp:1
 * caseIndent = 4                                                             //indent:1 exp:1
 * forceStrictCondition = false                                               //indent:1 exp:1
 * lineWrappingIndentation = 8                                                //indent:1 exp:1
 * tabWidth = 4                                                               //indent:1 exp:1
 * throwsIndent = 8                                                           //indent:1 exp:1
 *                                                                            //indent:1 exp:1
 *                                                                            //indent:1 exp:1
 */                                                                           //indent:1 exp:1                                                                   //indent:1 exp:1
public class InputSynchronizedStatement { //indent:0 exp:0
    private static InputSynchronizedStatement instance;//indent:4 exp:4
    public static InputSynchronizedStatement getInstance() {//indent:4 exp:4
        if (instance == null) //indent:8 exp:8
            synchronized (InputSynchronizedStatement.class) {//indent:12 exp:12
                if (instance == null)//indent:16 exp:16
                    instance = new InputSynchronizedStatement();//indent:20 exp:20
            }//indent:12 exp:12
        return instance;//indent:8 exp:8
    }//indent:4 exp:4
} //indent:0 exp:0