mirror of
https://github.com/revanced/smali.git
synced 2025-05-09 10:54:29 +02:00
Fixed formatting.
This commit is contained in:
parent
03b8247850
commit
6a2a627d3b
@ -144,24 +144,24 @@ public class DumpFields {
|
|||||||
|
|
||||||
private static void buildOptions() {
|
private static void buildOptions() {
|
||||||
Option classPathDirOption = OptionBuilder.withLongOpt("bootclasspath-dir")
|
Option classPathDirOption = OptionBuilder.withLongOpt("bootclasspath-dir")
|
||||||
.withDescription("the base folder to look for the bootclasspath files in. Defaults to the current " +
|
.withDescription("the base folder to look for the bootclasspath files in. Defaults to the current " +
|
||||||
"directory")
|
"directory")
|
||||||
.hasArg()
|
.hasArg()
|
||||||
.withArgName("DIR")
|
.withArgName("DIR")
|
||||||
.create("d");
|
.create("d");
|
||||||
|
|
||||||
Option outputFileOption = OptionBuilder.withLongOpt("out-file")
|
Option outputFileOption = OptionBuilder.withLongOpt("out-file")
|
||||||
.withDescription("output file")
|
.withDescription("output file")
|
||||||
.hasArg()
|
.hasArg()
|
||||||
.withArgName("FILE")
|
.withArgName("FILE")
|
||||||
.create("o");
|
.create("o");
|
||||||
|
|
||||||
Option apiLevelOption = OptionBuilder.withLongOpt("api-level")
|
Option apiLevelOption = OptionBuilder.withLongOpt("api-level")
|
||||||
.withDescription("The numeric api-level of the file being disassembled. If not " +
|
.withDescription("The numeric api-level of the file being disassembled. If not " +
|
||||||
"specified, it defaults to 15 (ICS).")
|
"specified, it defaults to 15 (ICS).")
|
||||||
.hasArg()
|
.hasArg()
|
||||||
.withArgName("API_LEVEL")
|
.withArgName("API_LEVEL")
|
||||||
.create("a");
|
.create("a");
|
||||||
|
|
||||||
options.addOption(classPathDirOption);
|
options.addOption(classPathDirOption);
|
||||||
options.addOption(outputFileOption);
|
options.addOption(outputFileOption);
|
||||||
|
@ -146,24 +146,24 @@ public class DumpVtables {
|
|||||||
|
|
||||||
private static void buildOptions() {
|
private static void buildOptions() {
|
||||||
Option classPathDirOption = OptionBuilder.withLongOpt("bootclasspath-dir")
|
Option classPathDirOption = OptionBuilder.withLongOpt("bootclasspath-dir")
|
||||||
.withDescription("the base folder to look for the bootclasspath files in. Defaults to the current " +
|
.withDescription("the base folder to look for the bootclasspath files in. Defaults to the current " +
|
||||||
"directory")
|
"directory")
|
||||||
.hasArg()
|
.hasArg()
|
||||||
.withArgName("DIR")
|
.withArgName("DIR")
|
||||||
.create("d");
|
.create("d");
|
||||||
|
|
||||||
Option outputFileOption = OptionBuilder.withLongOpt("out-file")
|
Option outputFileOption = OptionBuilder.withLongOpt("out-file")
|
||||||
.withDescription("output file")
|
.withDescription("output file")
|
||||||
.hasArg()
|
.hasArg()
|
||||||
.withArgName("FILE")
|
.withArgName("FILE")
|
||||||
.create("o");
|
.create("o");
|
||||||
|
|
||||||
Option apiLevelOption = OptionBuilder.withLongOpt("api-level")
|
Option apiLevelOption = OptionBuilder.withLongOpt("api-level")
|
||||||
.withDescription("The numeric api-level of the file being disassembled. If not " +
|
.withDescription("The numeric api-level of the file being disassembled. If not " +
|
||||||
"specified, it defaults to 15 (ICS).")
|
"specified, it defaults to 15 (ICS).")
|
||||||
.hasArg()
|
.hasArg()
|
||||||
.withArgName("API_LEVEL")
|
.withArgName("API_LEVEL")
|
||||||
.create("a");
|
.create("a");
|
||||||
|
|
||||||
options.addOption(classPathDirOption);
|
options.addOption(classPathDirOption);
|
||||||
options.addOption(outputFileOption);
|
options.addOption(outputFileOption);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user