From a3a9f0fe82393f52c46e90aea598754014f00223 Mon Sep 17 00:00:00 2001 From: "JesusFreke@JesusFreke.com" Date: Fri, 1 Jan 2010 22:38:49 +0000 Subject: [PATCH] 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 --- .../src/main/java/org/jf/smali/OdexedInstructionException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smali/src/main/java/org/jf/smali/OdexedInstructionException.java b/smali/src/main/java/org/jf/smali/OdexedInstructionException.java index 82ed73d4..ba04ca20 100644 --- a/smali/src/main/java/org/jf/smali/OdexedInstructionException.java +++ b/smali/src/main/java/org/jf/smali/OdexedInstructionException.java @@ -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."; } }