Browse Source

Merge branch 'master' of github.com:jboss-javassist/javassist

tags/rel_3_27_0_ga
chibash 4 years ago
parent
commit
9f1f605c12
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/main/javassist/bytecode/InstructionPrinter.java

+ 1
- 1
src/main/javassist/bytecode/InstructionPrinter.java View File

@@ -285,7 +285,7 @@ public class InstructionPrinter implements Opcode {
case ConstPool.CONST_Long:
return "#" + index + " = long " + pool.getLongInfo(index);
case ConstPool.CONST_Double:
return "#" + index + " = int " + pool.getDoubleInfo(index);
return "#" + index + " = double " + pool.getDoubleInfo(index);
case ConstPool.CONST_Class:
return classInfo(pool, index);
default:

Loading…
Cancel
Save