Просмотр исходного кода

Fix instruction printer double constant

tags/rel_3_27_0_ga
Dipta Das 4 лет назад
Родитель
Сommit
f3dd7be032
Аккаунт пользователя с таким Email не найден
1 измененных файлов: 1 добавлений и 1 удалений
  1. 1
    1
      src/main/javassist/bytecode/InstructionPrinter.java

+ 1
- 1
src/main/javassist/bytecode/InstructionPrinter.java Просмотреть файл

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

Загрузка…
Отмена
Сохранить