fix 2 typos

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1022745 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2010-10-14 22:43:50 +00:00
parent 8874d75b54
commit 9b8431be6c
1 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ public abstract class CachedArrayCreator<T extends CachedArray> extends EntryCre
{
int parserHashCode = parser.hashCode();
if( value.parserHashCode != null && value.parserHashCode != parserHashCode ) {
throw new RuntimeException( "Parser changed in subsequet call. "
throw new RuntimeException( "Parser changed in subsequent call. "
+value.parserHashCode+" != "+parserHashCode + " :: " + parser );
}
value.parserHashCode = parserHashCode;
@ -91,7 +91,7 @@ public abstract class CachedArrayCreator<T extends CachedArray> extends EntryCre
if( parser != null && value.parserHashCode != null ) {
int parserHashCode = parser.hashCode();
if( value.parserHashCode != parserHashCode ) {
throw new RuntimeException( "Parser changed in subsequet call. "
throw new RuntimeException( "Parser changed in subsequent call. "
+value.parserHashCode+" != "+parserHashCode + " :: " + parser );
}
}