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

public class InputSuppressWithPlainTextCommentFilterSuppressById {

    //CSOFF ignore (reason)
    private int A1;

    // @cs-: ignore (reason)
	private static final int a1 = 5; // contains tab character

    int a2 = 100;
    //CSON ignore

    private long a3 = 1;

}