don't error, when there are non disjoint locals

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@151 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 6e2fd59cb6
commit 0b1ab67667
  1. 2
      jode/jode/decompiler/LocalVariableRangeList.java

@ -51,7 +51,7 @@ public class LocalVariableRangeList {
after = after.next;
}
if (after != null && li.start + li.length > after.start)
throw new AssertError("non disjoint locals");
System.err.println("warning: non disjoint locals");
li.next = after;
if (before == null)
list = li;

Loading…
Cancel
Save