Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: make _options lowercase #3324

Merged
merged 1 commit into from
Sep 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions brut.apktool/apktool-cli/src/main/java/brut/apktool/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public static void main(String[] args) throws BrutException {
CommandLine commandLine;

// load options
_Options();
_options();

try {
commandLine = parser.parse(allOptions, args, false);
Expand Down Expand Up @@ -324,7 +324,7 @@ private static void _version() {
System.out.println(ApktoolProperties.getVersion());
}

private static void _Options() {
private static void _options() {
Option versionOption = Option.builder("version")
.longOpt("version")
.desc("Print the version.")
Expand Down Expand Up @@ -578,7 +578,7 @@ private static String verbosityHelp() {
}

private static void usage() {
_Options();
_options();
HelpFormatter formatter = new HelpFormatter();
formatter.setWidth(120);

Expand Down