You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ja...@apache.org on 2021/11/09 15:17:28 UTC

[solr] branch main updated: LUCENE-9229 fixed 3 javadoc links 1) google guave, 2&3) Two links relocated away from "aggregateknowledge" (#402)

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

janhoy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/main by this push:
     new 67c55b5  LUCENE-9229 fixed 3 javadoc links 1) google guave, 2&3) Two links relocated away from "aggregateknowledge" (#402)
67c55b5 is described below

commit 67c55b53a49d56b343497f06231375540fee7395
Author: Kristin Heibel <km...@users.noreply.github.com>
AuthorDate: Tue Nov 9 09:17:21 2021 -0600

    LUCENE-9229 fixed 3 javadoc links 1) google guave, 2&3) Two links relocated away from "aggregateknowledge" (#402)
    
    * fixed 3 javadoc links
    
    * version fixes from code review
    
    Co-authored-by: Kristin Heibel <km...@protonmail.com>
---
 solr/core/src/java/org/apache/solr/util/hll/HLL.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/solr/core/src/java/org/apache/solr/util/hll/HLL.java b/solr/core/src/java/org/apache/solr/util/hll/HLL.java
index 26bfa89..7b4f030 100644
--- a/solr/core/src/java/org/apache/solr/util/hll/HLL.java
+++ b/solr/core/src/java/org/apache/solr/util/hll/HLL.java
@@ -44,10 +44,10 @@ import org.apache.solr.util.LongIterator;
  *
  * This data structure is interoperable with the implementations found at:
  * <ul>
- *   <li><a href="https://github.com/aggregateknowledge/postgresql-hll">postgresql-hll</a>, and</li>
+ *   <li><a href="https://github.com/citusdata/postgresql-hll/blob/v2.9.0/README.markdown">postgresql-hll</a>, and</li>
  *   <li><a href="https://github.com/aggregateknowledge/js-hll">js-hll</a></li>
  * </ul>
- * when <a href="https://github.com/aggregateknowledge/postgresql-hll/blob/master/STORAGE.markdown">properly serialized</a>.
+ * when <a href="https://github.com/citusdata/postgresql-hll/blob/v2.9.0/STORAGE.markdown">properly serialized</a>.
  */
 public class HLL implements Cloneable {
     // minimum and maximum values for the log-base-2 of the number of registers
@@ -292,7 +292,7 @@ public class HLL implements Cloneable {
      *         value <em>already be hashed</em> with a strong (but not
      *         necessarily cryptographic) hash function. For instance, the
      *         Murmur3 implementation in
-     *         <a href="http://guava-libraries.googlecode.com/git/guava/src/com/google/common/hash/Murmur3_128HashFunction.java">
+     *         <a href="https://github.com/google/guava/blob/master/guava/src/com/google/common/hash/Murmur3_128HashFunction.java">
      *         Google's Guava</a> library is an excellent hash function for this
      *         purpose and, for seeds greater than zero, matches the output
      *         of the hash provided in the PostgreSQL implementation.