mirror of https://github.com/apache/lucene.git
Wrong cast corrected.
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150540 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
197e907924
commit
8b1fd56ae0
|
@ -389,7 +389,7 @@ implements FieldCache {
|
|||
store (reader, field, SortField.CUSTOM, retArray);
|
||||
return retArray;
|
||||
}
|
||||
return (String[]) ret;
|
||||
return (Comparable[]) ret;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue