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:
Christoph Goller 2004-09-29 15:06:56 +00:00
parent 197e907924
commit 8b1fd56ae0
1 changed files with 1 additions and 1 deletions

View File

@ -389,7 +389,7 @@ implements FieldCache {
store (reader, field, SortField.CUSTOM, retArray);
return retArray;
}
return (String[]) ret;
return (Comparable[]) ret;
}
}