From cbe21f61c658d5355339b6c294baf7afea24fdbe Mon Sep 17 00:00:00 2001 From: jochen Date: Sun, 7 Feb 1999 19:31:19 +0000 Subject: [PATCH] fix of the last fix git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@196 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/bytecode/ConstantPool.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jode/jode/bytecode/ConstantPool.java b/jode/jode/bytecode/ConstantPool.java index 884d986..0ea1377 100644 --- a/jode/jode/bytecode/ConstantPool.java +++ b/jode/jode/bytecode/ConstantPool.java @@ -139,7 +139,7 @@ public class ConstantPool { : (value < Byte.MIN_VALUE || value > Byte.MAX_VALUE) ? Type.tRange(Type.tInt, Type.tChar) : (value == 0 || value == 1) - ? Type.tBoolByte + ? Type.tBoolInt : Type.tUInt); } case FLOAT : return Type.tFloat ;