From 8d40790946f9ff1cacc02ce7f5625a1e2b6c93df Mon Sep 17 00:00:00 2001 From: jochen Date: Tue, 27 Apr 1999 18:07:29 +0000 Subject: [PATCH] getConstantPool removed git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@627 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/decompiler/ClassAnalyzer.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/jode/jode/decompiler/ClassAnalyzer.java b/jode/jode/decompiler/ClassAnalyzer.java index 89593cf..8bfd527 100644 --- a/jode/jode/decompiler/ClassAnalyzer.java +++ b/jode/jode/decompiler/ClassAnalyzer.java @@ -23,7 +23,6 @@ import jode.bytecode.ClassInfo; import jode.bytecode.FieldInfo; import jode.bytecode.MethodInfo; import jode.bytecode.ConstantPool; -import jode.bytecode.ClassFormatException; import jode.expr.Expression; import jode.flow.TransformConstructors; import java.util.NoSuchElementException; @@ -172,10 +171,6 @@ public class ClassAnalyzer implements Analyzer { writer.closeBrace(); } - public ConstantPool getConstantPool() { - return clazz.getConstantPool(); - } - public String getTypeString(Type type) { return type.toString(); }