From a018796a0449fbb10803bae3e165f0e0c631dd6f Mon Sep 17 00:00:00 2001 From: hoenicke Date: Fri, 27 Jul 2001 14:41:41 +0000 Subject: [PATCH] * 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 --- jode/ChangeLog | 6 ++++++ jode/jode/obfuscator/Main.java.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/jode/ChangeLog b/jode/ChangeLog index fd71aea..c1587ab 100644 --- a/jode/ChangeLog +++ b/jode/ChangeLog @@ -1,3 +1,9 @@ +2001-07-27 Jochen Hoenicke + + * 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 * jode/flow/CatchBlock.java.in (combineLocal): Added more checks diff --git a/jode/jode/obfuscator/Main.java.in b/jode/jode/obfuscator/Main.java.in index adcf12e..9cc5c67 100644 --- a/jode/jode/obfuscator/Main.java.in +++ b/jode/jode/obfuscator/Main.java.in @@ -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;