Commit cfe8c963 authored by Benoit Lamarche's avatar Benoit Lamarche Committed by Gerrit Code Review
Browse files

Merge "Revert "Relax conditions to retrieve LV debug info""

parents f075a676 ffdc3893
......@@ -21,5 +21,5 @@ package com.android.dx;
*/
public class Version {
/** {@code non-null;} version string */
public static final String VERSION = "1.13";
public static final String VERSION = "1.12";
}
......@@ -351,8 +351,7 @@ public final class LocalVariableList extends FixedSizeList {
*/
public boolean matchesPcAndIndex(int pc, int index) {
return (index == this.index) &&
// do not check that "pc >= startPc" because startPc may be later than the expected
// pc, if the bytecode has been modified, by Jacoco instrumentation for instance
(pc >= startPc) &&
(pc < (startPc + length));
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment