Skip to content

Commit 302b29e

Browse files
committed
eliminate eclipse warnings
1 parent f9af2f7 commit 302b29e

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

maven-nodejs-proxy/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@
7878
<plugin>
7979
<groupId>org.apache.maven.plugins</groupId>
8080
<artifactId>maven-shade-plugin</artifactId>
81-
<version>2.3</version>
8281
<configuration>
8382
<createDependencyReducedPom>true</createDependencyReducedPom>
8483
<filters>

maven-nodejs-proxy/src/main/java/io/wcm/devops/maven/nodejsproxy/resource/Checksums.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public class Checksums {
3434
private final Map<String, String> checksums = new HashMap<>();
3535

3636
private static final Pattern LEVEL_1_RELATIVE_NAME = Pattern.compile("^.*/([^/]+)$");
37-
private static final Pattern LEVEL_2_RELATIVE_NAME = Pattern.compile("^.*/([^/]+/[^/]+)$");;
37+
private static final Pattern LEVEL_2_RELATIVE_NAME = Pattern.compile("^.*/([^/]+/[^/]+)$");
3838

3939
/**
4040
* @param data Checksums file content

maven-nodejs-proxy/src/main/java/io/wcm/devops/maven/nodejsproxy/resource/SpoolStreamingOutput.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class SpoolStreamingOutput implements StreamingOutput {
3737

3838
private final HttpEntity httpEntity;
3939

40-
public SpoolStreamingOutput(HttpEntity httpEntity) {
40+
SpoolStreamingOutput(HttpEntity httpEntity) {
4141
this.httpEntity = httpEntity;
4242
}
4343

0 commit comments

Comments
 (0)