Skip to content

Commit 3b6ae0d

Browse files
committed
Remove unnecessary PMD suppressions
1 parent 2233e13 commit 3b6ae0d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

net.sourceforge.pmd.eclipse.plugin/src/main/java/net/sourceforge/pmd/eclipse/ui/views/ViolationOutlinePage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public class ViolationOutlinePage extends Page implements IPage, ISelectionChang
5252
private FileRecord resource;
5353

5454
protected final Integer[] columnWidths = {Integer.valueOf(20), Integer.valueOf(170), Integer.valueOf(40)};
55-
protected final int[] columnSortOrder = { 1, 1, 1 }; // NOPMD: Can't be static, as this is public API.
55+
protected final int[] columnSortOrder = { 1, 1, 1 };
5656
protected int currentSortedColumn;
5757

5858
/**

net.sourceforge.pmd.eclipse.plugin/src/main/java/net/sourceforge/pmd/eclipse/ui/views/ViolationOverview.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public class ViolationOverview extends ViewPart implements ISelectionProvider, I
6666
private ViewMemento memento;
6767

6868
protected final Integer[] columnWidths = new Integer[5];
69-
protected final int[] columnSortOrder = { 1, -1, -1, -1, 1 }; // NOPMD: Can't be static, as this is public API.
69+
protected final int[] columnSortOrder = { 1, -1, -1, -1, 1 };
7070
protected int currentSortedColumn;
7171
private int showType;
7272

0 commit comments

Comments
 (0)