Browse Source

fixed JASSIST-205

tags/rel_3_19_0_ga
chibash 10 years ago
parent
commit
a688386baf
2 changed files with 1 additions and 2 deletions
  1. 1
    1
      Readme.html
  2. 0
    1
      src/main/javassist/bytecode/stackmap/MapMaker.java

+ 1
- 1
Readme.html View File



<p>-version 3.19 <p>-version 3.19
<ul> <ul>
<li>JIRA JASSIST-158, 206, 207.
<li>JIRA JASSIST-158, 205, 206, 207.
</ul> </ul>
</p> </p>



+ 0
- 1
src/main/javassist/bytecode/stackmap/MapMaker.java View File

protected static int recordTypeData(int n, TypeData[] srcTypes, TypeData[] destTypes) { protected static int recordTypeData(int n, TypeData[] srcTypes, TypeData[] destTypes) {
int k = -1; int k = -1;
for (int i = 0; i < n; i++) { for (int i = 0; i < n; i++) {
// TypeData t = srcTypes[i];
TypeData t = validateTypeData(srcTypes, n, i); TypeData t = validateTypeData(srcTypes, n, i);
destTypes[i] = t.join(); destTypes[i] = t.join();
if (t != TOP) if (t != TOP)

Loading…
Cancel
Save