Remove redundant modifiers

This commit is contained in:
Phillip Webb
2015-09-08 15:06:44 -07:00
parent 460ca75fce
commit e07df7e4c6
210 changed files with 325 additions and 325 deletions

View File

@@ -268,7 +268,7 @@ public class JarWriter {
private final boolean close;
public InputStreamEntryWriter(InputStream inputStream, boolean close) {
InputStreamEntryWriter(InputStream inputStream, boolean close) {
this.inputStream = inputStream;
this.close = close;
}
@@ -346,7 +346,7 @@ public class JarWriter {
private long size;
public CrcAndSize(File file) throws IOException {
CrcAndSize(File file) throws IOException {
FileInputStream inputStream = new FileInputStream(file);
try {
load(inputStream);
@@ -356,7 +356,7 @@ public class JarWriter {
}
}
public CrcAndSize(InputStream inputStream) throws IOException {
CrcAndSize(InputStream inputStream) throws IOException {
load(inputStream);
}

View File

@@ -279,7 +279,7 @@ public abstract class MainClassFinder {
private boolean found;
public MainMethodFinder() {
MainMethodFinder() {
super(Opcodes.ASM4);
}

View File

@@ -522,7 +522,7 @@ public class RepackagerTests {
private final byte[] bytes;
public MockLauncherScript(String script) {
MockLauncherScript(String script) {
this.bytes = script.getBytes();
}