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

public class InputSuppressWithNearbyCommentFilterById {

    private int A1; // @cs-: ignore (reason)

    private static final int abc = 5; // @cs-: violation (No NPE here)

    int line_length = 100; // Suppression @cs-: ignore (reason)

    private long ID = 1; // Suppression @cs-:
    /*
        Suppression @cs-: ignore (reason)*/private long ID3 = 1;
}