aboutsummaryrefslogtreecommitdiff
path: root/smali
diff options
context:
space:
mode:
authorBen Gruver <bgruv@google.com>2018-02-09 14:08:03 -0800
committerBen Gruver <bgruv@google.com>2018-05-23 13:34:16 -0700
commit0a8839663b0136b72cdc2fabec959f8ebe38f3dc (patch)
tree3f9e331a82d680dce4e1181ec062481271115a7a /smali
parent5c5e4ae279738f36d2a7cb4dfcd397daa1cb4268 (diff)
downloadsmali-0a8839663b0136b72cdc2fabec959f8ebe38f3dc.tar.gz
"occured" -> "occurred" in SmaliTestUtils
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();