"occured" -> "occurred" in SmaliTestUtils

This commit is contained in:
Ben Gruver 2018-02-09 14:08:03 -08:00
parent 5c5e4ae279
commit 0a8839663b

View File

@ -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();