SOLR-11603: Remove unused (public) LTRScoringModel.hasParams() method.

This commit is contained in:
Christine Poerschke 2017-11-03 21:31:16 +00:00
parent 2a2cf4b5e4
commit b43dcde267
2 changed files with 2 additions and 4 deletions

View File

@ -132,6 +132,8 @@ Other Changes
* SOLR-11380: SolrJ must stream docs to server instead of writing to a buffer first (noble)
* SOLR-11603: Remove unused (public) LTRScoringModel.hasParams() method. (Christine Poerschke)
================== 7.1.0 ==================
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.

View File

@ -229,10 +229,6 @@ public abstract class LTRScoringModel {
return true;
}
public boolean hasParams() {
return !((params == null) || params.isEmpty());
}
public Collection<Feature> getAllFeatures() {
return allFeatures;
}