From 771af8c5bbdea959e0bea12061a70af4dea78809 Mon Sep 17 00:00:00 2001 From: jochen Date: Wed, 28 Oct 1998 19:00:09 +0000 Subject: [PATCH] Long without trailing "L" git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@97 379699f6-c40d-0410-875b-85095c16579e --- jode/jode/bytecode/Opcodes.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jode/jode/bytecode/Opcodes.java b/jode/jode/bytecode/Opcodes.java index 2fac6f3..fa3eed0 100644 --- a/jode/jode/bytecode/Opcodes.java +++ b/jode/jode/bytecode/Opcodes.java @@ -360,7 +360,7 @@ public abstract class Opcodes { return createNormal (ca, addr, 1, new ConstOperator (LONG_TYPE, - Integer.toString(opcode - opc_lconst_0) + "L")); + Integer.toString(opcode - opc_lconst_0))); case opc_fconst_0: case opc_fconst_1: case opc_fconst_2: return createNormal (ca, addr, 1, new ConstOperator @@ -378,7 +378,7 @@ public abstract class Opcodes { case opc_sipush: return createNormal (ca, addr, 3, new ConstOperator - (Type.tRange(Type.tInt, Type.tShort), + (Type.tRange(Type.tInt, Type.tChar), Integer.toString(stream.readShort()))); case opc_ldc: { int index = stream.readUnsignedByte();