aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/indentation/InputValidTryResourcesIndent.java
blob: 4874f2e93f6dee8fb25ead5a7384b4a31d2e27c1 (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
29
30
31
32
33
34
35
36
37
package com.puppycrawl.tools.checkstyle.checks.indentation; //indent:0 exp:0

import java.io.FileInputStream; //indent:0 exp:0
import java.io.IOException; //indent:0 exp:0
import java.util.jar.JarInputStream; //indent:0 exp:0
import java.util.jar.Manifest; //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 = 4                                                //indent:1 exp:1
 * tabWidth = 4                                                               //indent:1 exp:1
 * throwsIndent = 4                                                           //indent:1 exp:1
 *                                                                            //indent:1 exp:1
 *                                                                            //indent:1 exp:1
 */                                                                           //indent:1 exp:1
class InputValidTryResourcesIndent //indent:0 exp:0
{ //indent:0 exp:0
    // Taken from JDK7 java.lang.Package src code. //indent:4 exp:4
    private static Manifest loadManifest(String fn) { //indent:4 exp:4
        try (FileInputStream fis = new FileInputStream(fn); //indent:8 exp:8
    // This should be an error //indent:4 exp:4
    JarInputStream jis = new JarInputStream(fis, false)) //indent:4 exp:4
        { //indent:8 exp:8
            return jis.getManifest(); //indent:12 exp:12
        } catch (IOException e) //indent:8 exp:8
        { //indent:8 exp:8
            return null; //indent:12 exp:12
        } //indent:8 exp:8
    } //indent:4 exp:4
} //indent:0 exp:0