SOLR-12373: Remove deprecated constructor

This commit is contained in:
Tomas Fernandez Lobbe 2019-01-25 13:48:40 -08:00
parent 0bd1911db6
commit ef81dadc7d
1 changed files with 0 additions and 21 deletions

View File

@ -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,