Don't skip inlined this

This commit is contained in:
Natalia Ukhorskaya
2015-11-27 15:57:52 +03:00
parent 29778311e8
commit 5073b1d372
@@ -97,10 +97,6 @@ public class LocalVarRemapper {
//add entries only for shifted vars
if (SHIFT == info.status) {
int newIndex = ((StackValue.Local) info.value).index;
if (newIndex != 0 && "this".equals(name)) {
/*skip additional this for now*/
return;
}
mv.visitLocalVariable(name, desc, signature, start, end, newIndex);
}
}