aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputStrictCondition.java
blob: 84964ee4554d75b6359ce9e0b3f3e1261f2f1e6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.puppycrawl.tools.checkstyle.checks.indentation; //indent:0 exp:0

import java.lang.Thread; //indent:0 exp:0

public class InputStrictCondition { //indent:0 exp:0
    void method(Thread foo) { //indent:4 exp:4
        method( //indent:8 exp:8
                new Thread() { //indent:16 exp:16
                        public void run() { //indent:24 exp:24
                            } //indent:28 exp:28
                    } //indent:20 exp:20
        ); //indent:8 exp:8
        } //indent:8 exp:8
    } //indent:4 exp:4