Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Eclipse Update Site:
This is a minor release.

### 🚀 New and noteworthy
* Update to PMD 7.17.0
* Support for Eclipse 2025-09 added
* Support for Eclipse 2024-09 removed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ public NewPropertyDialog(Shell parent, PropertySource theSource, ValueChangeList
* @deprecated use {@link #NewPropertyDialog(Shell, PropertySource, ValueChangeListener)} instead.
*/
@Deprecated // for removal
@SuppressWarnings("PMD.UnusedFormalParameter")
public NewPropertyDialog(Shell parent, Map<Class<?>, EditorFactory<?>> theEditorFactoriesByValueType,
PropertySource theSource, ValueChangeListener theChangeListener) {
this(parent, theSource, theChangeListener);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class TypeText extends Composite {
private Text text;
private boolean acceptPrimitives;

public TypeText(Composite parent, int style, boolean primitivesOK, String thePromptText) { // NOPMD: thePromptText is unused TODO
public TypeText(Composite parent, int style, boolean primitivesOK, String thePromptText) {
super(parent, SWT.None);

GridLayout layout = new GridLayout(1, false);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ public FormArranger(Composite theParent, ValueChangeListener listener, SizeChang
* @deprecated Use {@link #FormArranger(Composite, ValueChangeListener, SizeChangeListener)} instead.
*/
@Deprecated // for removal
@SuppressWarnings("PMD.UnusedFormalParameter")
public FormArranger(Composite theParent, Map<Class<?>, EditorFactory<?>> factories, ValueChangeListener listener,
SizeChangeListener sizeListener) {
this(theParent, listener, sizeListener);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class TableColumnSorter extends ViewerSorter {
* @param order,
* the Direction to sort by, -1 (desc) or 1 (asc)
*/
public TableColumnSorter(TreeColumn column, int order) { // NOPMD: TODO unused formal parameters...
public TableColumnSorter(TreeColumn column, int order) {
super();

// column.getParent().setSortColumn(column);
Expand All @@ -34,7 +34,7 @@ public TableColumnSorter(TreeColumn column, int order) { // NOPMD: TODO unused f
* @param order,
* the Direction to sort by, -1 (desc) or 1 (asc)
*/
public TableColumnSorter(TableColumn column, int order) { // NOPMD: TODO unused formal parameters...
public TableColumnSorter(TableColumn column, int order) {
super();

// column.getParent().setSortColumn(column);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public ASTContentProvider(boolean includeImportsFlag, boolean includeCommentsFla
includeComments = includeCommentsFlag;
}

public ASTContentProvider(Set<Class<?>> theHiddenNodeTypes) { // NOPMD: unused formal parameter TODO
public ASTContentProvider(Set<Class<?>> theHiddenNodeTypes) {
// hiddenNodeTypes = theHiddenNodeTypes;
}

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
<!-- https://github.com/eclipse/tycho/blob/master/RELEASE_NOTES.md and https://github.com/eclipse-tycho/tycho/releases -->
<tycho.version>4.0.10</tycho.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<pmd.version>7.16.0</pmd.version>
<pmd.version>7.17.0</pmd.version>
<pmd.build-tools.version>34</pmd.build-tools.version>
<checkstyle.version>10.26.1</checkstyle.version>
<checkstyle.plugin.version>3.6.0</checkstyle.plugin.version>
<pmd.plugin.version>3.27.0</pmd.plugin.version>
<pmd.check.version>7.16.0</pmd.check.version>
<pmd.check.version>7.17.0</pmd.check.version>

<keystorePath>.ci/files/pmd-eclipse-plugin.p12</keystorePath>
<keystore>${basedir}/${keystorePath}</keystore>
Expand Down
Loading