Browse Source

reformatted the code for fixing JASSIST-209.

It has been fixed by the previous commit, though.
tags/rel_3_19_0_ga
chibash 9 years ago
parent
commit
8c08b63daa
2 changed files with 5 additions and 5 deletions
  1. 1
    1
      Readme.html
  2. 4
    4
      src/main/javassist/bytecode/annotation/ClassMemberValue.java

+ 1
- 1
Readme.html View 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>


+ 4
- 4
src/main/javassist/bytecode/annotation/ClassMemberValue.java View 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);
}
}

/**

Loading…
Cancel
Save