* jode/obfuscator/Main.java.in (stripping): Initialize to 0 which

means strip nothing.  This is necessary because there is no way
to turn off stripping.


git-svn-id: https://svn.code.sf.net/p/jode/code/branches/branch_1_1@1330 379699f6-c40d-0410-875b-85095c16579e
branch_1_1
hoenicke 23 years ago
parent aca789beed
commit a018796a04
  1. 6
      jode/ChangeLog
  2. 2
      jode/jode/obfuscator/Main.java.in

@ -1,3 +1,9 @@
2001-07-27 Jochen Hoenicke <jochen@gnu.org>
* jode/obfuscator/Main.java.in (stripping): Initialize to 0 which
means strip nothing. This is necessary because there is no way
to turn off stripping.
2001-07-11 Jochen Hoenicke <jochen@gnu.org>
* jode/flow/CatchBlock.java.in (combineLocal): Added more checks

@ -57,7 +57,7 @@ public class Main {
public static final int STRIP_LVT = 0x0004;
public static final int STRIP_LNT = 0x0008;
public static final int STRIP_SOURCE = 0x0010;
public static int stripping = 0x1;
public static int stripping = 0;
private static ClassBundle bundle;

Loading…
Cancel
Save