mirror of
https://github.com/revanced/smali.git
synced 2025-06-13 04:27:38 +02:00
Don't set the encoded debug info when nothing needed to be changed
git-svn-id: https://smali.googlecode.com/svn/trunk@514 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
@ -581,7 +581,9 @@ public class CodeItem extends Item<CodeItem> {
|
|||||||
|
|
||||||
assert debugInstructionFixer.result != null;
|
assert debugInstructionFixer.result != null;
|
||||||
|
|
||||||
debugInfo.setEncodedDebugInfo(debugInstructionFixer.result);
|
if (debugInstructionFixer.result != null) {
|
||||||
|
debugInfo.setEncodedDebugInfo(debugInstructionFixer.result);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (encodedCatchHandlers != null) {
|
if (encodedCatchHandlers != null) {
|
||||||
|
Reference in New Issue
Block a user