From 23984349615e80605f4eb3405639ee9e250ddbf6 Mon Sep 17 00:00:00 2001 From: jochen Date: Thu, 17 Jun 1999 10:57:54 +0000 Subject: [PATCH] add OPTION_ANON git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@836 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/Decompiler.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/jode/jode/Decompiler.java b/jode/jode/Decompiler.java index b68a157..a4678d7 100644 --- a/jode/jode/Decompiler.java +++ b/jode/jode/Decompiler.java @@ -41,8 +41,9 @@ public class Decompiler { public static final int OPTION_IMMEDIATE = 0x0080; public static final int OPTION_VERIFY = 0x0100; - public static int options - = OPTION_LVT | OPTION_INNER | OPTION_DECRYPT | OPTION_VERIFY; + public static int options = + OPTION_LVT | OPTION_INNER | OPTION_ANON | + OPTION_DECRYPT | OPTION_VERIFY; public static final String[] optionNames = { "lvt", "inners", "anonymous", "push",