Remove redundant semicolons
Closes gh-10422
This commit is contained in:
committed by
Stephane Nicoll
parent
bbee943972
commit
f3472beed8
@@ -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();
|
||||
|
||||
@@ -34,6 +34,6 @@ public enum ZipCompression {
|
||||
/**
|
||||
* The entry should be {@link ZipEntry#DEFLATED} in the archive.
|
||||
*/
|
||||
DEFLATED;
|
||||
DEFLATED
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user