Skip to content

Commit

Permalink
Fix javadoc errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Jotschi committed Jan 3, 2022
1 parent f2944c1 commit 15fc58a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/java/io/metaloom/quadtree/QuadTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public interface QuadTree<T> {
* Add a new element to the QuadTree that has a specific dimension/size
*
* @param point
* @param size
* @param elementSize
* @param element
* @return true when the element could be inserted
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ public Map<Cell, PointNode<T>> getSubNodes() {
}

/**
* Returns the cell of this element
* Returns the cell which matches the coordinates.
*
* @param element
* @param coordinates
* @return
*/
protected Cell findIndex(Point coordinates) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class PointQuadTreeImpl<T> extends AbstractQuadTree<T> implements PointQu
/**
* Create a new QuadTree with the give start coordinates and size
*
* @param startCorrdinates
* @param startCoordinates
* @param size
*/
public PointQuadTreeImpl(Point startCoordinates, Size size) {
Expand Down

0 comments on commit 15fc58a

Please sign in to comment.