Remove redundant semicolons

Closes gh-10422
This commit is contained in:
dreis2211
2017-09-25 23:46:30 +02:00
committed by Stephane Nicoll
parent bbee943972
commit f3472beed8
24 changed files with 26 additions and 26 deletions

View File

@@ -84,7 +84,7 @@ final class ApplicationPluginAction implements PluginApplicationAction {
private String loadResource(String name) {
try (InputStreamReader reader = new InputStreamReader(
getClass().getResourceAsStream(name));) {
getClass().getResourceAsStream(name))) {
char[] buffer = new char[4096];
int read = 0;
StringWriter writer = new StringWriter();

View File

@@ -34,6 +34,6 @@ public enum ZipCompression {
/**
* The entry should be {@link ZipEntry#DEFLATED} in the archive.
*/
DEFLATED;
DEFLATED
}