Parcourir la source

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

tags/rel_3_27_0_ga
chibash il y a 4 ans
Parent
révision
9f1f605c12
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      src/main/javassist/bytecode/InstructionPrinter.java

+ 1
- 1
src/main/javassist/bytecode/InstructionPrinter.java Voir le fichier

@@ -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:

Chargement…
Annuler
Enregistrer