mirror of https://github.com/apache/lucene.git
SOLR-8360: simplify ExternalFileField.getValueSource implementation
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1718562 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
118c79a3d6
commit
fe731fd449
|
@ -257,6 +257,8 @@ Other Changes
|
|||
* SOLR-7774: revise BasicDistributedZkTest.test logic w.r.t. 'commitWithin did not work on some nodes'
|
||||
(Christine Poerschke)
|
||||
|
||||
* SOLR-8360: simplify ExternalFileField.getValueSource implementation (Christine Poerschke)
|
||||
|
||||
================== 5.4.0 ==================
|
||||
|
||||
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release
|
||||
|
|
|
@ -99,7 +99,7 @@ public class ExternalFileField extends FieldType implements SchemaAware {
|
|||
|
||||
@Override
|
||||
public ValueSource getValueSource(SchemaField field, QParser parser) {
|
||||
return getFileFloatSource(field, parser.getReq().getCore().getDataDir());
|
||||
return getFileFloatSource(field);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue