Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
halo
dalvik
Commits
cfe8c963
Commit
cfe8c963
authored
8 years ago
by
Benoit Lamarche
Committed by
Gerrit Code Review
8 years ago
Browse files
Options
Download
Plain Diff
Merge "Revert "Relax conditions to retrieve LV debug info""
parents
f075a676
ffdc3893
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
dx/src/com/android/dx/Version.java
dx/src/com/android/dx/Version.java
+1
-1
dx/src/com/android/dx/cf/code/LocalVariableList.java
dx/src/com/android/dx/cf/code/LocalVariableList.java
+1
-2
No files found.
dx/src/com/android/dx/Version.java
View file @
cfe8c963
...
...
@@ -21,5 +21,5 @@ package com.android.dx;
*/
public
class
Version
{
/** {@code non-null;} version string */
public
static
final
String
VERSION
=
"1.1
3
"
;
public
static
final
String
VERSION
=
"1.1
2
"
;
}
This diff is collapsed.
Click to expand it.
dx/src/com/android/dx/cf/code/LocalVariableList.java
View file @
cfe8c963
...
...
@@ -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
));
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment