mirror of
https://github.com/revanced/Apktool.git
synced 2025-05-01 14:44:26 +02:00
refactor: make _options lowercase (#3324)
This commit is contained in:
parent
a117132e39
commit
6e3fac2414
@ -55,7 +55,7 @@ public class Main {
|
|||||||
CommandLine commandLine;
|
CommandLine commandLine;
|
||||||
|
|
||||||
// load options
|
// load options
|
||||||
_Options();
|
_options();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
commandLine = parser.parse(allOptions, args, false);
|
commandLine = parser.parse(allOptions, args, false);
|
||||||
@ -324,7 +324,7 @@ public class Main {
|
|||||||
System.out.println(ApktoolProperties.getVersion());
|
System.out.println(ApktoolProperties.getVersion());
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void _Options() {
|
private static void _options() {
|
||||||
Option versionOption = Option.builder("version")
|
Option versionOption = Option.builder("version")
|
||||||
.longOpt("version")
|
.longOpt("version")
|
||||||
.desc("Print the version.")
|
.desc("Print the version.")
|
||||||
@ -578,7 +578,7 @@ public class Main {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static void usage() {
|
private static void usage() {
|
||||||
_Options();
|
_options();
|
||||||
HelpFormatter formatter = new HelpFormatter();
|
HelpFormatter formatter = new HelpFormatter();
|
||||||
formatter.setWidth(120);
|
formatter.setWidth(120);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user