Skip to content

Commit 15fc58a

Browse files
committed
Fix javadoc errors
1 parent f2944c1 commit 15fc58a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/main/java/io/metaloom/quadtree/QuadTree.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public interface QuadTree<T> {
3434
* Add a new element to the QuadTree that has a specific dimension/size
3535
*
3636
* @param point
37-
* @param size
37+
* @param elementSize
3838
* @param element
3939
* @return true when the element could be inserted
4040
*/

src/main/java/io/metaloom/quadtree/point/impl/PointNodeImpl.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ public Map<Cell, PointNode<T>> getSubNodes() {
6464
}
6565

6666
/**
67-
* Returns the cell of this element
67+
* Returns the cell which matches the coordinates.
6868
*
69-
* @param element
69+
* @param coordinates
7070
* @return
7171
*/
7272
protected Cell findIndex(Point coordinates) {

src/main/java/io/metaloom/quadtree/point/impl/PointQuadTreeImpl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class PointQuadTreeImpl<T> extends AbstractQuadTree<T> implements PointQu
2020
/**
2121
* Create a new QuadTree with the give start coordinates and size
2222
*
23-
* @param startCorrdinates
23+
* @param startCoordinates
2424
* @param size
2525
*/
2626
public PointQuadTreeImpl(Point startCoordinates, Size size) {

0 commit comments

Comments
 (0)