You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2020/10/31 07:16:21 UTC

[lucene-solr] branch reference_impl_dev updated: @1098 javadoc fix.

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

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


The following commit(s) were added to refs/heads/reference_impl_dev by this push:
     new 221e7ec  @1098 javadoc fix.
221e7ec is described below

commit 221e7ec0f1d48414e5c64ae07be341c847083518
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Sat Oct 31 02:16:05 2020 -0500

    @1098 javadoc fix.
---
 solr/core/src/java/org/apache/solr/cloud/ZkDistributedQueue.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/solr/core/src/java/org/apache/solr/cloud/ZkDistributedQueue.java b/solr/core/src/java/org/apache/solr/cloud/ZkDistributedQueue.java
index ed18f61..06941c5 100644
--- a/solr/core/src/java/org/apache/solr/cloud/ZkDistributedQueue.java
+++ b/solr/core/src/java/org/apache/solr/cloud/ZkDistributedQueue.java
@@ -98,8 +98,8 @@ public class ZkDistributedQueue implements DistributedQueue {
    * Contains the last set of children fetched from ZK. Elements are removed from the head of
    * this in-memory set as they are consumed from the queue.  Due to the distributed nature
    * of the queue, elements may appear in this set whose underlying nodes have been consumed in ZK.
-   * Therefore, methods like {@link #peek(Predicate<String>)} have to double-check actual node existence, and methods
-   * like {@link #poll(Predicate<String>)} must resolve any races by attempting to delete the underlying node.
+   * Therefore, methods like peek have to double-check actual node existence, and methods
+   * like poll must resolve any races by attempting to delete the underlying node.
    */
   protected volatile TreeMap<String,byte[]> knownChildren;