diff options
author | chibash <chiba@javassist.org> | 2019-12-23 18:35:13 +0900 |
---|---|---|
committer | chibash <chiba@javassist.org> | 2019-12-23 18:35:13 +0900 |
commit | 9f1f605c12aa2b7d5deb45daaa1412f50c109562 (patch) | |
tree | 0e4ccbd46d8cef654bf32840e4b11c2034b659b4 /src | |
parent | 559bc90de5251b499e6d54ee195b31bd33704a6a (diff) | |
parent | 19a64dd7c2dfc03bbe9f6443341ebf9acd085a9f (diff) | |
download | javassist-9f1f605c12aa2b7d5deb45daaa1412f50c109562.tar.gz javassist-9f1f605c12aa2b7d5deb45daaa1412f50c109562.zip |
Merge branch 'master' of github.com:jboss-javassist/javassist
Diffstat (limited to 'src')
-rw-r--r-- | src/main/javassist/bytecode/InstructionPrinter.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/javassist/bytecode/InstructionPrinter.java b/src/main/javassist/bytecode/InstructionPrinter.java index 93182baa..6d18a4d4 100644 --- a/src/main/javassist/bytecode/InstructionPrinter.java +++ b/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: |