From 2108dbbaa25d97ae675a84f51c29d5f65e1ac451 Mon Sep 17 00:00:00 2001 From: jochen Date: Fri, 13 Aug 1999 09:07:41 +0000 Subject: [PATCH] Don't load fields and methods any more, they take too much space. git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@1145 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/bytecode/ClassInfo.java.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jode/jode/bytecode/ClassInfo.java.in b/jode/jode/bytecode/ClassInfo.java.in index 3e230a0..7392b2a 100644 --- a/jode/jode/bytecode/ClassInfo.java.in +++ b/jode/jode/bytecode/ClassInfo.java.in @@ -210,7 +210,7 @@ public class ClassInfo extends BinaryInfo { /* Since we have to read the whole class anyway, we load all * info, that we may need later and that does not take much memory. */ - howMuch |= FIELDS | METHODS | HIERARCHY | INNERCLASSES | OUTERCLASSES; + howMuch |= HIERARCHY | INNERCLASSES | OUTERCLASSES; howMuch &= ~status; /* header */ if (input.readInt() != 0xcafebabe)