Skip to content

Commit

Permalink
[DOCS] Standardize Javadoc comments for links (#1721)
Browse files Browse the repository at this point in the history
https://stackoverflow.com/questions/1082050/linking-to-an-external-url-in-javadoc

Was using IntelliJ IDE and these minor Javadoc issues were listed.
  • Loading branch information
jbampton authored Dec 16, 2024
1 parent 389f324 commit 5c08f5d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@
import org.locationtech.jts.geom.Point;
import scala.Tuple2;

/** see https://en.wikipedia.org/wiki/K-D-B-tree */
/**
* see <a
* href="https://en.wikipedia.org/wiki/K-D-B-tree">https://en.wikipedia.org/wiki/K-D-B-tree</a>
*/
public class KDB extends PartitioningUtils implements Serializable {

private final int maxItemsPerNode;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,10 @@ public static void teardown() {
sc.stop();
}

/** See https://issues.apache.org/jira/browse/SEDONA-233 */
/**
* See <a
* href="https://issues.apache.org/jira/browse/SEDONA-233">https://issues.apache.org/jira/browse/SEDONA-233</a>
*/
@Test
public void testDeduplication() throws Exception {
SpatialRDD<Geometry> leftRDD = new SpatialRDD<>();
Expand Down

0 comments on commit 5c08f5d

Please sign in to comment.