mirror of https://github.com/apache/lucene.git
Make older JDK 1.5 happy with the ugly casts by removing generics here
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1079712 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bdaa02c3c0
commit
4c29ad4169
|
@ -90,7 +90,7 @@ public class SortField {
|
|||
private String field;
|
||||
private int type; // defaults to determining type dynamically
|
||||
boolean reverse = false; // defaults to natural order
|
||||
private CachedArrayCreator<?> creator;
|
||||
@SuppressWarnings("unchecked") private CachedArrayCreator creator;
|
||||
public Object missingValue = null; // used for 'sortMissingFirst/Last'
|
||||
|
||||
// Used for CUSTOM sort
|
||||
|
|
Loading…
Reference in New Issue