diff options
author | Rich Bolen <rich.bolen@icg360.com> | 2019-08-27 07:55:06 -0400 |
---|---|---|
committer | Rich Bolen <rich.bolen@icg360.com> | 2019-08-27 07:55:06 -0400 |
commit | 45764f9465c712d6dc0b69a5027ffccc5b8e2afc (patch) | |
tree | 2d63eee76f93d1df77ada3b342130bdef01adaed | |
parent | 265b8fbea408078b0bcc76a13203f0846ae3cfd0 (diff) | |
download | javassist-45764f9465c712d6dc0b69a5027ffccc5b8e2afc.tar.gz javassist-45764f9465c712d6dc0b69a5027ffccc5b8e2afc.zip |
Incorporate feedback from the PR
-rw-r--r-- | src/main/javassist/bytecode/ConstPool.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main/javassist/bytecode/ConstPool.java b/src/main/javassist/bytecode/ConstPool.java index bd521001..34170e35 100644 --- a/src/main/javassist/bytecode/ConstPool.java +++ b/src/main/javassist/bytecode/ConstPool.java @@ -105,7 +105,12 @@ public final class ConstPool public static final int CONST_MethodType = MethodTypeInfo.tag; /** - * <code>CONSTANT_MethodHandle</code> + * <code>CONSTANT_Dynamic</code> + */ + public static final int CONST_Dynamic = DynamicInfo.tag; + + /** + * <code>CONSTANT_InvokeDynamic</code> */ public static final int CONST_InvokeDynamic = InvokeDynamicInfo.tag; |