mirror of https://github.com/apache/lucene.git
add a comment to previous commit, so nobody breaks this by e.g. Eclipse auto-cleanup
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1079716 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4c29ad4169
commit
82c22128be
|
@ -90,7 +90,11 @@ public class SortField {
|
|||
private String field;
|
||||
private int type; // defaults to determining type dynamically
|
||||
boolean reverse = false; // defaults to natural order
|
||||
|
||||
// This is not generified because of a javac bug in early JDK 1.5 (e.g. used by FreeBSD).
|
||||
// With <?> as type param, getComparator() fails to compile because of cast problems.
|
||||
@SuppressWarnings("unchecked") private CachedArrayCreator creator;
|
||||
|
||||
public Object missingValue = null; // used for 'sortMissingFirst/Last'
|
||||
|
||||
// Used for CUSTOM sort
|
||||
|
|
Loading…
Reference in New Issue