LUCENE-3312: Apply patch lucene-3312-patch-09.patch

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene3312@1371131 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2012-08-09 10:01:56 +00:00
parent 81cf4938ca
commit e7811cfa6c
2 changed files with 1 additions and 5 deletions

View File

@ -89,7 +89,7 @@ public class BinaryResponseWriter implements BinaryQueryResponseWriter {
writeResults(ctx, codec); writeResults(ctx, codec);
return null; // null means we completely handled it return null; // null means we completely handled it
} }
if( o instanceof IndexableField ) { if( o instanceof StorableField ) {
if(schema == null) schema = solrQueryRequest.getSchema(); if(schema == null) schema = solrQueryRequest.getSchema();
StorableField f = (StorableField)o; StorableField f = (StorableField)o;

View File

@ -445,10 +445,6 @@ public class DateField extends PrimitiveFieldType {
minInclusive, maxInclusive); minInclusive, maxInclusive);
} }
public String storedToIndexed(GeneralField f) {
return null;
}
} }