Remove redundant modifiers
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
@@ -279,7 +279,7 @@ public abstract class MainClassFinder {
|
||||
|
||||
private boolean found;
|
||||
|
||||
public MainMethodFinder() {
|
||||
MainMethodFinder() {
|
||||
super(Opcodes.ASM4);
|
||||
}
|
||||
|
||||
|
||||
@@ -522,7 +522,7 @@ public class RepackagerTests {
|
||||
|
||||
private final byte[] bytes;
|
||||
|
||||
public MockLauncherScript(String script) {
|
||||
MockLauncherScript(String script) {
|
||||
this.bytes = script.getBytes();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user