aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/coding/returncount/InputReturnCountVoid.java
blob: a1beceeae146bd05fc251218260f3ec86065e6fc (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
41
42
43
44
45
46
47
48
package com.puppycrawl.tools.checkstyle.checks.coding.returncount;

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;
    }

    void method5() {
        if (true) {
            return;
        }

        return;
    }
}