aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/InputCatchOnly.java
blob: ac1a01a113dba20756ab5bed339ce57915f118f1 (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
package com.puppycrawl.tools.checkstyle.checks.naming;

/**
 * Test case for skipping over catch names.
 **/
public class InputCatchOnly {
    int foo() {
        if (System.currentTimeMillis() > 1000)
            return 1;

        int test = 0;

        try
        {
            return 1;
        }
        catch (Exception e)
        {
            return 0;
        }
    }

    public InputCatchOnly()
    {
        return;
    }
    
    class InnerFoo
    {
        public void fooInnerMethod ()
        {
        }
    }
}