(dogfood) Bump pmd from 6.28.0 to 6.29.0
This commit is contained in:
@@ -182,8 +182,7 @@ public class Formatter {
|
||||
boolean isOnError = true;
|
||||
try {
|
||||
output = Files.newOutputStream(file.toPath());
|
||||
writer = new OutputStreamWriter(output, charset);
|
||||
writer = new BufferedWriter(writer);
|
||||
writer = new BufferedWriter(new OutputStreamWriter(output, charset));
|
||||
isOnError = false;
|
||||
} finally {
|
||||
if (isOnError) {
|
||||
|
4
pom.xml
4
pom.xml
@@ -405,12 +405,12 @@
|
||||
<dependency>
|
||||
<groupId>net.sourceforge.pmd</groupId>
|
||||
<artifactId>pmd-core</artifactId>
|
||||
<version>6.28.0</version>
|
||||
<version>6.29.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.sourceforge.pmd</groupId>
|
||||
<artifactId>pmd-java</artifactId>
|
||||
<version>6.28.0</version>
|
||||
<version>6.29.0</version>
|
||||
</dependency>
|
||||
<!-- This contains the dogfood ruleset -->
|
||||
<dependency>
|
||||
|
Reference in New Issue
Block a user