From: chibash Date: Thu, 20 Nov 2014 15:42:29 +0000 (+0900) Subject: reformatted the code for fixing JASSIST-209. X-Git-Tag: rel_3_19_0_ga~7 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8c08b63daaaa5b1626a8666ee6e8d16c728e99a6;p=javassist.git reformatted the code for fixing JASSIST-209. It has been fixed by the previous commit, though. --- diff --git a/Readme.html b/Readme.html index a32457e9..9782bfe4 100644 --- a/Readme.html +++ b/Readme.html @@ -283,7 +283,7 @@ see javassist.Dump.

-version 3.19

diff --git a/src/main/javassist/bytecode/annotation/ClassMemberValue.java b/src/main/javassist/bytecode/annotation/ClassMemberValue.java index 6a1bcd85..7169d723 100644 --- a/src/main/javassist/bytecode/annotation/ClassMemberValue.java +++ b/src/main/javassist/bytecode/annotation/ClassMemberValue.java @@ -101,10 +101,10 @@ public class ClassMemberValue extends MemberValue { public String getValue() { String v = cp.getUtf8Info(valueIndex); try { - return SignatureAttribute.toTypeSignature(v).jvmTypeName(); - } catch (BadBytecode e) { - throw new RuntimeException(e); - } + return SignatureAttribute.toTypeSignature(v).jvmTypeName(); + } catch (BadBytecode e) { + throw new RuntimeException(e); + } } /**