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



<p>-version 3.19 <p>-version 3.19
<ul> <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> </ul>
</p> </p>



+ 4
- 4
src/main/javassist/bytecode/annotation/ClassMemberValue.java View File

public String getValue() { public String getValue() {
String v = cp.getUtf8Info(valueIndex); String v = cp.getUtf8Info(valueIndex);
try { 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