Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
virjar committed Sep 2, 2021
1 parent cb05362 commit 6e4a939
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
import org.apache.commons.cli.HelpFormatter;
import org.apache.commons.cli.Option;
import org.apache.commons.cli.Options;
import org.apache.tools.zip.ZipFile;

import java.io.File;

public class OptimizeBuilderResource {
public static void main(String[] args) throws Exception {
Expand All @@ -22,7 +25,10 @@ public static void main(String[] args) throws Exception {
return;
}

File builderJarInputFile = new File(cmd.getOptionValue("input"));
try (ZipFile zipFile = new ZipFile(builderJarInputFile)) {

This comment has been minimized.

Copy link
@Tahsinygt

Tahsinygt May 7, 2022

java.io.File


}


}
Expand Down

0 comments on commit 6e4a939

Please sign in to comment.