refactor: make _options lowercase (#3324)

This commit is contained in:
Connor Tumbleson 2023-09-09 09:47:41 -04:00 committed by GitHub
parent a117132e39
commit 6e3fac2414
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -55,7 +55,7 @@ public class Main {
CommandLine commandLine;
// load options
_Options();
_options();
try {
commandLine = parser.parse(allOptions, args, false);
@ -324,7 +324,7 @@ public class Main {
System.out.println(ApktoolProperties.getVersion());
}
private static void _Options() {
private static void _options() {
Option versionOption = Option.builder("version")
.longOpt("version")
.desc("Print the version.")
@ -578,7 +578,7 @@ public class Main {
}
private static void usage() {
_Options();
_options();
HelpFormatter formatter = new HelpFormatter();
formatter.setWidth(120);