Fix EmptyLineSeparator violations for fields, issue #1040
This commit is contained in:
parent
b83375fc6d
commit
224d8144c2
|
|
@ -70,8 +70,14 @@ public class SuppressWarningsHolder
|
|||
{
|
||||
/** the source name of the suppressed check */
|
||||
private final String checkName;
|
||||
/** the suppression region for the check */
|
||||
private final int firstLine, firstColumn, lastLine, lastColumn;
|
||||
/** the suppression region for the check - first line */
|
||||
private final int firstLine;
|
||||
/** the suppression region for the check - first column */
|
||||
private final int firstColumn;
|
||||
/** the suppression region for the check - last line */
|
||||
private final int lastLine;
|
||||
/** the suppression region for the check - last column */
|
||||
private final int lastColumn;
|
||||
|
||||
/**
|
||||
* Constructs a new suppression region entry.
|
||||
|
|
|
|||
Loading…
Reference in New Issue