From 0a8839663b0136b72cdc2fabec959f8ebe38f3dc Mon Sep 17 00:00:00 2001 From: Ben Gruver Date: Fri, 9 Feb 2018 14:08:03 -0800 Subject: [PATCH] "occured" -> "occurred" in SmaliTestUtils --- smali/src/main/java/org/jf/smali/SmaliTestUtils.java | 4 ++-- 1 file 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();