Skip to content

Commit

Permalink
Merge pull request pxb1988#35 from sschuberth/2.x
Browse files Browse the repository at this point in the history
Fix a few typos in the command line option descriptions
  • Loading branch information
pxb1988 committed Dec 7, 2015
2 parents 52174ca + 9ae0bc7 commit d463a0b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ public static void main(String... args) {
private Path exceptionFile;
@Opt(opt = "f", longOpt = "force", hasArg = false, description = "force overwrite")
private boolean forceOverwrite = false;
@Opt(opt = "n", longOpt = "not-handle-exception", hasArg = false, description = "not handle any exception throwed by dex2jar")
@Opt(opt = "n", longOpt = "not-handle-exception", hasArg = false, description = "not handle any exceptions thrown by dex2jar")
private boolean notHandleException = false;
@Opt(opt = "o", longOpt = "output", description = "output .jar file, default is $current_dir/[file-name]-dex2jar.jar", argName = "out-jar-file")
private Path output;

@Opt(opt = "r", longOpt = "reuse-reg", hasArg = false, description = "reuse regiter while generate java .class file")
@Opt(opt = "r", longOpt = "reuse-reg", hasArg = false, description = "reuse register while generate java .class file")
private boolean reuseReg = false;

@Opt(opt = "s", hasArg = false, description = "same with --topological-sort/-ts")
Expand All @@ -54,10 +54,10 @@ public static void main(String... args) {
@Opt(opt = "d", longOpt = "debug-info", hasArg = false, description = "translate debug info")
private boolean debugInfo = false;

@Opt(opt = "p", longOpt = "print-ir", hasArg = false, description = "print ir to Syste.out")
@Opt(opt = "p", longOpt = "print-ir", hasArg = false, description = "print ir to System.out")
private boolean printIR = false;

@Opt(opt = "os", longOpt = "optmize-synchronized", hasArg = false, description = "optmize-synchronized")
@Opt(opt = "os", longOpt = "optmize-synchronized", hasArg = false, description = "optimize-synchronized")
private boolean optmizeSynchronized = false;

@Opt(opt = "nc", longOpt = "no-code", hasArg = false, description = "")
Expand Down

0 comments on commit d463a0b

Please sign in to comment.