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:
JesusFreke@JesusFreke.com
2009-12-23 23:46:12 +00:00
parent e266117407
commit 2ededb89b9

View File

@ -581,7 +581,9 @@ public class CodeItem extends Item<CodeItem> {
assert debugInstructionFixer.result != null;
debugInfo.setEncodedDebugInfo(debugInstructionFixer.result);
if (debugInstructionFixer.result != null) {
debugInfo.setEncodedDebugInfo(debugInstructionFixer.result);
}
}
if (encodedCatchHandlers != null) {