mirror of https://github.com/apache/lucene.git
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:
parent
8874d75b54
commit
9b8431be6c
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue