You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by tf...@apache.org on 2019/01/25 21:49:51 UTC

[lucene-solr] branch branch_8x updated: SOLR-12373: Remove deprecated constructor

This is an automated email from the ASF dual-hosted git repository.

tflobbe pushed a commit to branch branch_8x
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8x by this push:
     new 4070f56  SOLR-12373: Remove deprecated constructor
4070f56 is described below

commit 4070f56a56663d3e1f42b5018dbad5925e5db1c8
Author: Tomas Fernandez Lobbe <tf...@apache.org>
AuthorDate: Fri Jan 25 13:48:40 2019 -0800

    SOLR-12373: Remove deprecated constructor
---
 .../DocBasedVersionConstraintsProcessor.java        | 21 ---------------------
 1 file changed, 21 deletions(-)

diff --git a/solr/core/src/java/org/apache/solr/update/processor/DocBasedVersionConstraintsProcessor.java b/solr/core/src/java/org/apache/solr/update/processor/DocBasedVersionConstraintsProcessor.java
index b7dcb30..ef9f8de 100644
--- a/solr/core/src/java/org/apache/solr/update/processor/DocBasedVersionConstraintsProcessor.java
+++ b/solr/core/src/java/org/apache/solr/update/processor/DocBasedVersionConstraintsProcessor.java
@@ -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,