mirror of https://github.com/apache/lucene.git
SOLR-12373: Remove deprecated constructor
This commit is contained in:
parent
0bd1911db6
commit
ef81dadc7d
|
@ -69,27 +69,6 @@ public class DocBasedVersionConstraintsProcessor extends UpdateRequestProcessor
|
|||
private final boolean useFieldCache;
|
||||
|
||||
private long oldSolrVersion; // current _version_ of the doc in the index/update log
|
||||
|
||||
/**
|
||||
* @deprecated Use {@link #DocBasedVersionConstraintsProcessor(List, boolean, List, boolean, boolean, NamedList, SolrQueryRequest, UpdateRequestProcessor)}
|
||||
*/
|
||||
@Deprecated
|
||||
public DocBasedVersionConstraintsProcessor(List<String> versionFields,
|
||||
boolean ignoreOldUpdates,
|
||||
List<String> deleteVersionParamNames,
|
||||
boolean supportMissingVersionOnOldDocs,
|
||||
boolean useFieldCache,
|
||||
SolrQueryRequest req,
|
||||
UpdateRequestProcessor next ) {
|
||||
this(versionFields,
|
||||
ignoreOldUpdates,
|
||||
deleteVersionParamNames,
|
||||
supportMissingVersionOnOldDocs,
|
||||
useFieldCache,
|
||||
null,
|
||||
req,
|
||||
next);
|
||||
}
|
||||
|
||||
public DocBasedVersionConstraintsProcessor(List<String> versionFields,
|
||||
boolean ignoreOldUpdates,
|
||||
|
|
Loading…
Reference in New Issue