Skip to content

Commit 9695582

Browse files
committed
chore: fix @APinote tag casing and update .gitignore
1 parent 628372e commit 9695582

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@ target/
33
*.iml
44
dependency-reduced-pom.xml
55
/javadoc/
6+
.flattened-pom.xml
7+
.DS_Store
8+
/docs/
9+
.vscode/

api/src/main/java/de/bsommerfeld/pathetic/api/pathing/heuristic/LinearHeuristicStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*
2222
* <p>Ideal for 3D grid-based environments with diagonal movement and path-straightness penalties.
2323
*
24-
* @apiNote This heuristic strategy operates on floored coordinates to ensure consistent and
24+
* @api.Note This heuristic strategy operates on floored coordinates to ensure consistent and
2525
* predictable pathfinding behavior in grid-based environments. The floored coordinates
2626
* represent the discrete grid cell positions that nodes occupy, which is essential for
2727
* maintaining the admissibility and consistency of heuristic calculations in traditional

api/src/main/java/de/bsommerfeld/pathetic/api/pathing/heuristic/SquaredHeuristicStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* <p>Ideal for high-performance pathfinding in large 3D environments.
2525
*
26-
* @apiNote This heuristic strategy operates on floored coordinates to ensure consistent and
26+
* @api.Note This heuristic strategy operates on floored coordinates to ensure consistent and
2727
* predictable pathfinding behavior in grid-based environments. The floored coordinates
2828
* represent the discrete grid cell positions that nodes occupy, which is essential for
2929
* maintaining the admissibility and consistency of heuristic calculations in traditional

api/src/main/java/de/bsommerfeld/pathetic/api/pathing/processing/Processor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Base interface for pathfinding processors. It defines lifecycle methods that can be implemented
77
* by concrete processors to initialize or finalize resources or states related to a path search.
88
*
9-
* @apiNote Processors must be thread-safe.
9+
* @api.Note Processors must be thread-safe.
1010
*/
1111
public interface Processor { // PathPosition is implied globally for pathetic
1212
/**

0 commit comments

Comments
 (0)