You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2024/01/14 16:09:36 UTC

(commons-graph) branch master updated: Javadoc and comments: Use an HTTPS URL

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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-graph.git


The following commit(s) were added to refs/heads/master by this push:
     new 93d2ba7  Javadoc and comments: Use an HTTPS URL
93d2ba7 is described below

commit 93d2ba7f11d636b405a1a9135987aa5b81fce00c
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Jan 14 11:09:32 2024 -0500

    Javadoc and comments: Use an HTTPS URL
---
 src/main/java/org/apache/commons/graph/CommonsGraph.java            | 2 +-
 src/main/java/org/apache/commons/graph/collections/DisjointSet.java | 2 +-
 .../java/org/apache/commons/graph/collections/FibonacciHeap.java    | 2 +-
 src/main/java/org/apache/commons/graph/elo/package-info.java        | 2 +-
 src/main/java/org/apache/commons/graph/export/ExportSelector.java   | 4 ++--
 .../commons/graph/spanning/SpanningTreeAlgorithmSelector.java       | 6 +++---
 .../apache/commons/graph/spanning/SpanningTreeSourceSelector.java   | 2 +-
 7 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/main/java/org/apache/commons/graph/CommonsGraph.java b/src/main/java/org/apache/commons/graph/CommonsGraph.java
index 6850ea4..b893187 100644
--- a/src/main/java/org/apache/commons/graph/CommonsGraph.java
+++ b/src/main/java/org/apache/commons/graph/CommonsGraph.java
@@ -69,7 +69,7 @@ public final class CommonsGraph
 
     /**
      * Ranks the players (vertices) that took part in a tournament (graph) depending on the game results (edges),
-     * applying the <a href="http://en.wikipedia.org/wiki/Elo_rating_system.">Elo Rating System</a>.
+     * applying the <a href="https://en.wikipedia.org/wiki/Elo_rating_system.">Elo Rating System</a>.
      *
      * @param <P> the players involved in the tournament
      * @param <TG> the Tournament Graph type
diff --git a/src/main/java/org/apache/commons/graph/collections/DisjointSet.java b/src/main/java/org/apache/commons/graph/collections/DisjointSet.java
index 47b31ca..c6ab250 100644
--- a/src/main/java/org/apache/commons/graph/collections/DisjointSet.java
+++ b/src/main/java/org/apache/commons/graph/collections/DisjointSet.java
@@ -23,7 +23,7 @@ import java.util.HashMap;
 import java.util.Map;
 
 /**
- * Simple <a href="http://en.wikipedia.org/wiki/Disjoint-set_data_structure">Disjoint-set</a> implementation.
+ * Simple <a href="https://en.wikipedia.org/wiki/Disjoint-set_data_structure">Disjoint-set</a> implementation.
  *
  * @param <E> the type of elements held in this collection.
  */
diff --git a/src/main/java/org/apache/commons/graph/collections/FibonacciHeap.java b/src/main/java/org/apache/commons/graph/collections/FibonacciHeap.java
index 74ac325..ab77daa 100644
--- a/src/main/java/org/apache/commons/graph/collections/FibonacciHeap.java
+++ b/src/main/java/org/apache/commons/graph/collections/FibonacciHeap.java
@@ -38,7 +38,7 @@ import java.util.Stack;
 
 /**
  * A Fibonacci Heap implementation based on
- * <a href="http://staff.ustc.edu.cn/~csli/graduate/algorithms/book6/chap21.htm">University of Science and Technology of
+ * <a href="https://staff.ustc.edu.cn/~csli/graduate/algorithms/book6/chap21.htm">University of Science and Technology of
  * China</a> lesson.
  *
  * <p><b>Note 1</b>: this class is NOT thread safe!</p>
diff --git a/src/main/java/org/apache/commons/graph/elo/package-info.java b/src/main/java/org/apache/commons/graph/elo/package-info.java
index 79c4841..9869a9d 100644
--- a/src/main/java/org/apache/commons/graph/elo/package-info.java
+++ b/src/main/java/org/apache/commons/graph/elo/package-info.java
@@ -1,6 +1,6 @@
 /**
  * The {@code elo} package contains a Java implementation of the
- * <a href="http://en.wikipedia.org/wiki/Elo_rating_system.">Elo Rating System</a>
+ * <a href="https://en.wikipedia.org/wiki/Elo_rating_system.">Elo Rating System</a>
  */
 package org.apache.commons.graph.elo;
 
diff --git a/src/main/java/org/apache/commons/graph/export/ExportSelector.java b/src/main/java/org/apache/commons/graph/export/ExportSelector.java
index 1132adb..174504b 100644
--- a/src/main/java/org/apache/commons/graph/export/ExportSelector.java
+++ b/src/main/java/org/apache/commons/graph/export/ExportSelector.java
@@ -29,7 +29,7 @@ public interface ExportSelector<V, E>
 {
 
     /**
-     * Export Graphs in <a href="http://en.wikipedia.org/wiki/DOT_language">DOT language</a>.
+     * Export Graphs in <a href="https://en.wikipedia.org/wiki/DOT_language">DOT language</a>.
      *
      * @return {@link DotExporter} instance
      * @throws GraphExportException
@@ -38,7 +38,7 @@ public interface ExportSelector<V, E>
         throws GraphExportException;
 
     /**
-     * Export Graphs in <a href="http://graphml.graphdrawing.org/">GraphML file format</a>.
+     * Export Graphs in <a href="https://graphml.graphdrawing.org/">GraphML file format</a>.
      *
      * @return {@link GraphMLExporter} instance
      * @throws GraphExportException
diff --git a/src/main/java/org/apache/commons/graph/spanning/SpanningTreeAlgorithmSelector.java b/src/main/java/org/apache/commons/graph/spanning/SpanningTreeAlgorithmSelector.java
index 3432313..bea4415 100644
--- a/src/main/java/org/apache/commons/graph/spanning/SpanningTreeAlgorithmSelector.java
+++ b/src/main/java/org/apache/commons/graph/spanning/SpanningTreeAlgorithmSelector.java
@@ -33,7 +33,7 @@ public interface SpanningTreeAlgorithmSelector<V, W, WE>
 {
 
     /**
-     * Applies the <a href="http://en.wikipedia.org/wiki/Bor%C5%AFvka's_algorithm">Boruvka</a>'s algorithm.
+     * Applies the <a href="https://en.wikipedia.org/wiki/Bor%C5%AFvka's_algorithm">Boruvka</a>'s algorithm.
      *
      * @param <WO> the type of weight operations
      * @param weightOperations the class responsible for operations on weights
@@ -42,7 +42,7 @@ public interface SpanningTreeAlgorithmSelector<V, W, WE>
     <WO extends OrderedMonoid<W>> SpanningTree<V, WE, W> applyingBoruvkaAlgorithm( WO weightOperations );
 
     /**
-     * Applies the <a href="http://en.wikipedia.org/wiki/Kruskal%27s_algorithm">Kruskal</a>'s algorithm.
+     * Applies the <a href="https://en.wikipedia.org/wiki/Kruskal%27s_algorithm">Kruskal</a>'s algorithm.
      *
      * @param <WO> the type of weight operations
      * @param weightOperations the class responsible for operations on weights
@@ -51,7 +51,7 @@ public interface SpanningTreeAlgorithmSelector<V, W, WE>
     <WO extends OrderedMonoid<W>> SpanningTree<V, WE, W> applyingKruskalAlgorithm( WO weightOperations );
 
     /**
-     * Applies the <a href="http://en.wikipedia.org/wiki/Prim%27s_algorithm">Prim</a>'s algorithm.
+     * Applies the <a href="https://en.wikipedia.org/wiki/Prim%27s_algorithm">Prim</a>'s algorithm.
      *
      * @param <WO> the type of weight operations
      * @param weightOperations the class responsible for operations on weights
diff --git a/src/main/java/org/apache/commons/graph/spanning/SpanningTreeSourceSelector.java b/src/main/java/org/apache/commons/graph/spanning/SpanningTreeSourceSelector.java
index bd5f3c7..375cead 100644
--- a/src/main/java/org/apache/commons/graph/spanning/SpanningTreeSourceSelector.java
+++ b/src/main/java/org/apache/commons/graph/spanning/SpanningTreeSourceSelector.java
@@ -33,7 +33,7 @@ public interface SpanningTreeSourceSelector<V, W, WE>
 {
 
     /**
-     * Applies the <a href="http://en.wikipedia.org/wiki/Reverse-Delete_algorithm">Reverse-Delete</a> algorithm.
+     * Applies the <a href="https://en.wikipedia.org/wiki/Reverse-Delete_algorithm">Reverse-Delete</a> algorithm.
      *
      * <pre>
      * function ReverseDelete(edges[] E)