fixed a bug with long options: --pretty had code 'h' as had help

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@1157 379699f6-c40d-0410-875b-85095c16579e
branch_1_1
jochen 25 years ago
parent ff298fb733
commit 12d8d27cdd
  1. 4
      jode/jode/Decompiler.java

@ -58,8 +58,8 @@ public class Decompiler {
OPTION_LVT | OPTION_INNER | OPTION_ANON |
OPTION_DECRYPT | OPTION_VERIFY | OPTION_CONTRAFO;
private static final int OPTION_START=100;
private static final int OPTION_END =200;
private static final int OPTION_START=0x10000;
private static final int OPTION_END =0x20000;
private static final LongOpt[] longOptions = new LongOpt[] {
new LongOpt("cp", LongOpt.REQUIRED_ARGUMENT, null, 'c'),
new LongOpt("classpath", LongOpt.REQUIRED_ARGUMENT, null, 'c'),

Loading…
Cancel
Save