Skip to content

Commit d009ae8

Browse files
committed
Updated to PMD 6.19.0
1 parent 8476429 commit d009ae8

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

ReleaseNotes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ This is a minor release.
1313

1414
### New and noteworthy
1515

16+
* Updated PMD to 6.19.0
17+
1618
### Fixed Issues
1719

1820
### API Changes

net.sourceforge.pmd.eclipse.plugin.test/src/main/java/net/sourceforge/pmd/eclipse/BasicPMDTest.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
package net.sourceforge.pmd.eclipse;
66

77
import java.io.ByteArrayInputStream;
8+
import java.io.IOException;
89
import java.io.InputStream;
910
import java.io.UnsupportedEncodingException;
1011
import java.util.Iterator;
@@ -53,6 +54,11 @@ public InputStream getInputStream() {
5354
public String getNiceFileName(final boolean shortNames, final String inputFileName) {
5455
return "somefile.txt";
5556
}
57+
58+
@Override
59+
public void close() throws IOException {
60+
// no-op
61+
}
5662
}
5763

5864
/**

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<properties>
1717
<tycho.version>1.4.0</tycho.version>
1818
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
19-
<pmd.version>6.18.0</pmd.version>
19+
<pmd.version>6.19.0</pmd.version>
2020
<maven-antrun-plugin.version>1.8</maven-antrun-plugin.version>
2121
<pmd.build-tools.version>3</pmd.build-tools.version>
2222
<checkstyle.version>3.0.0</checkstyle.version>

0 commit comments

Comments
 (0)