aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/coding/InputReturnCountVoid.java
blob: 8ec2b35f47017cd7669b5cac5670a88b4a4b5340 (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
38
39
40
package com.puppycrawl.tools.checkstyle.checks.coding;

class InputReturnCountVoid {
    public InputReturnCountVoid() {
        return;
    }

    public void method() {
        if (true) {
            return;
        }
    }

    public void method2() {
        if (true) {
            return;
        }

        return;
    }

    public int method3() {
        if (true) {
            return 0;
        }

        return 0;
    }

    public int method4() {
        if (true) {
            return 0;
        }
        if (false) {
            return 0;
        }

        return 0;
    }
}