File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
net.sourceforge.pmd.eclipse.plugin.test/src/main/java/net/sourceforge/pmd/eclipse Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 55package net .sourceforge .pmd .eclipse ;
66
77import java .io .ByteArrayInputStream ;
8+ import java .io .IOException ;
89import java .io .InputStream ;
910import java .io .UnsupportedEncodingException ;
1011import 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 /**
Original file line number Diff line number Diff line change 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>
You can’t perform that action at this time.
0 commit comments