Skip to content

Commit 9073e76

Browse files
authored
Bump PMD from 7.15.0 to 7.16.0 (#289)
1 parent 4703026 commit 9073e76

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

ReleaseNotes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ Eclipse Update Site:
1212
This is a minor release.
1313

1414
### 🚀 New and noteworthy
15+
* Update to PMD 7.16.0
1516

1617
### 🐛 Fixed Issues
1718

1819
### ✨ Merged pull requests
1920

2021
### 📦 Dependency updates
22+
* [#289](https://github.com/pmd/pmd-eclipse-plugin/pull/289): Bump PMD from 7.15.0 to 7.16.0
2123

2224
### API Changes
2325

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

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
<!-- https://github.com/eclipse/tycho/blob/master/RELEASE_NOTES.md and https://github.com/eclipse-tycho/tycho/releases -->
2222
<tycho.version>4.0.10</tycho.version>
2323
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24-
<pmd.version>7.15.0</pmd.version>
24+
<pmd.version>7.16.0</pmd.version>
2525
<pmd.build-tools.version>33</pmd.build-tools.version>
2626
<checkstyle.version>10.26.1</checkstyle.version>
2727
<checkstyle.plugin.version>3.6.0</checkstyle.plugin.version>
2828
<pmd.plugin.version>3.27.0</pmd.plugin.version>
29-
<pmd.check.version>7.15.0</pmd.check.version>
29+
<pmd.check.version>7.16.0</pmd.check.version>
3030

3131
<keystorePath>.ci/files/pmd-eclipse-plugin.p12</keystorePath>
3232
<keystore>${basedir}/${keystorePath}</keystore>

0 commit comments

Comments
 (0)