mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-12 13:57:46 +01:00
fix: remove unused exceptions in CLI
This commit is contained in:
parent
3b179f8750
commit
d48b407f5b
@ -32,7 +32,7 @@ import java.io.IOException;
|
|||||||
import java.util.logging.*;
|
import java.util.logging.*;
|
||||||
|
|
||||||
public class Main {
|
public class Main {
|
||||||
public static void main(String[] args) throws IOException, InterruptedException, BrutException {
|
public static void main(String[] args) throws BrutException {
|
||||||
|
|
||||||
// headless
|
// headless
|
||||||
System.setProperty("java.awt.headless", "true");
|
System.setProperty("java.awt.headless", "true");
|
||||||
@ -204,7 +204,7 @@ public class Main {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void cmdBuild(CommandLine cli) throws BrutException {
|
private static void cmdBuild(CommandLine cli) {
|
||||||
String[] args = cli.getArgs();
|
String[] args = cli.getArgs();
|
||||||
String appDirName = args.length < 2 ? "." : args[1];
|
String appDirName = args.length < 2 ? "." : args[1];
|
||||||
File outFile;
|
File outFile;
|
||||||
@ -234,7 +234,7 @@ public class Main {
|
|||||||
buildOptions.noCrunch = true;
|
buildOptions.noCrunch = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Temporary flag to enable the use of aapt2. This will tranform in time to a use-aapt1 flag, which will be
|
// Temporary flag to enable the use of aapt2. This will transform in time to a use-aapt1 flag, which will be
|
||||||
// legacy and eventually removed.
|
// legacy and eventually removed.
|
||||||
if (cli.hasOption("use-aapt2")) {
|
if (cli.hasOption("use-aapt2")) {
|
||||||
buildOptions.useAapt2 = true;
|
buildOptions.useAapt2 = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user