Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOCS] Standardize Javadoc comments for links #1721

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading