Skip to content

Commit

Permalink
refactor: make _options lowercase (#3324)
Browse files Browse the repository at this point in the history
  • Loading branch information
iBotPeaches committed Sep 9, 2023
1 parent a117132 commit 6e3fac2
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 6e3fac2

Please sign in to comment.