aboutsummaryrefslogtreecommitdiff
path: root/smali
diff options
context:
space:
mode:
Diffstat (limited to 'smali')
-rw-r--r--smali/src/main/java/org/jf/smali/SmaliTestUtils.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/smali/src/main/java/org/jf/smali/SmaliTestUtils.java b/smali/src/main/java/org/jf/smali/SmaliTestUtils.java
index a0fe55c2..08bd6cb0 100644
--- a/smali/src/main/java/org/jf/smali/SmaliTestUtils.java
+++ b/smali/src/main/java/org/jf/smali/SmaliTestUtils.java
@@ -72,7 +72,7 @@ public class SmaliTestUtils {
smaliParser.smali_file_return result = parser.smali_file();
if(parser.getNumberOfSyntaxErrors() > 0 || lexer.getNumberOfSyntaxErrors() > 0) {
- throw new RuntimeException("Error occured while compiling text");
+ throw new RuntimeException("Error occurred while compiling text");
}
CommonTree t = result.getTree();
@@ -87,7 +87,7 @@ public class SmaliTestUtils {
dexGen.smali_file();
if (dexGen.getNumberOfSyntaxErrors() > 0) {
- throw new RuntimeException("Error occured while compiling text");
+ throw new RuntimeException("Error occurred while compiling text");
}
MemoryDataStore dataStore = new MemoryDataStore();