From 54c64e5d3f19270c6b72d5e960225858c0de3cab Mon Sep 17 00:00:00 2001 From: jochen Date: Fri, 7 May 1999 22:58:13 +0000 Subject: [PATCH] clear info and identifiers after writing git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@799 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/obfuscator/ClassIdentifier.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jode/jode/obfuscator/ClassIdentifier.java b/jode/jode/obfuscator/ClassIdentifier.java index 0aa14fb..090df65 100644 --- a/jode/jode/obfuscator/ClassIdentifier.java +++ b/jode/jode/obfuscator/ClassIdentifier.java @@ -434,6 +434,8 @@ public class ClassIdentifier extends Identifier { if (GlobalOptions.verboseLevel > 0) GlobalOptions.err.println("Writing "+this); info.write(out); + info = null; + identifiers = null; } public Identifier getParent() {