aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/checks/sizes/methodcount/InputMethodCount3.java
blob: 3265e903689b718756bada88931379ba4eaa6498 (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
package com.puppycrawl.tools.checkstyle.checks.sizes.methodcount;

public class InputMethodCount3 {

    /**
     * Dummy inner class to check that the inner-classes methods are not counted for the outer class.
     */
    /**
     * Dummy method doing nothing
     */
    void doNothing50() {
    }

    /**
     * Dummy method doing nothing
     */
    void doNothing51() {
    }

    /**
     * Dummy method doing nothing
     */
    void doNothing52() {
    }

    /**
     * Dummy method doing nothing
     */
    void doNothing53() {
    }

    /**
     * Dummy method doing nothing
     */
    void doNothing54() {
    }

}