Wording change in the error message that smali outputs when it encounters an odexed instruction

git-svn-id: https://smali.googlecode.com/svn/trunk@547 55b6fa8a-2a1e-11de-a435-ffa8d773f76a
This commit is contained in:
JesusFreke@JesusFreke.com 2010-01-01 22:38:49 +00:00
parent 0f78b15cd7
commit a3a9f0fe82

View File

@ -40,7 +40,7 @@ public class OdexedInstructionException extends RecognitionException {
}
public String getMessage() {
return odexedInstruction + " is an odexed instruction. You cannot recompile a disassembled odex file " +
return odexedInstruction + " is an odexed instruction. You cannot reassemble a disassembled odex file " +
"unless it has been deodexed.";
}
}