aboutsummaryrefslogtreecommitdiff
path: root/src/test/resources/com/puppycrawl/tools/checkstyle/filters/suppresswithplaintextcommentfilter/InputSuppressWithPlainTextCommentFilterCustomMessageFormat.java
blob: d66fce649805b7d43dcd52f930be7204115cf761 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.puppycrawl.tools.checkstyle.filters.suppresswithplaintextcommentfilter;

public class InputSuppressWithPlainTextCommentFilterCustomMessageFormat {

    // CHECKSTYLE:OFF
    private int A1;

	private static final int a1 = 5; // contains tab character

    int a2 = 100;

    // CHECKSTYLE:ON
    private long a3 = 1;

}