aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/naming/parametername/InputParameterNameCatchOnly.java
blob: 966114bdf6408df316b726c19590d8a3f1b1b70b (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.parametername;

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

        int test = 0;

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

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