]> source.dussan.org Git - javassist.git/commitdiff
reformatted the code for fixing JASSIST-209.
authorchibash <chiba@javassist.org>
Thu, 20 Nov 2014 15:42:29 +0000 (00:42 +0900)
committerchibash <chiba@javassist.org>
Thu, 20 Nov 2014 15:42:29 +0000 (00:42 +0900)
It has been fixed by the previous commit, though.

Readme.html
src/main/javassist/bytecode/annotation/ClassMemberValue.java

index a32457e991da9f6c9c3d974a9d0e7085bd7f6829..9782bfe44a6c37b9e76bdeafcd146a8af0ba389b 100644 (file)
@@ -283,7 +283,7 @@ see javassist.Dump.
 
 <p>-version 3.19
 <ul>
-<li>JIRA JASSIST-158, 205, 206, 207, 208, 211, 212, 216, 220, 223, 224, 227, 230, 234, 235, 236.
+<li>JIRA JASSIST-158, 205, 206, 207, 208, 209, 211, 212, 216, 220, 223, 224, 227, 230, 234, 235, 236.
 </ul>
 </p>
 
index 6a1bcd85a6b0536b1bc84f727986f30c74732e0c..7169d7231e7f6719c381f8948ae7935fe97041bb 100644 (file)
@@ -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);
+        }
     }
 
     /**