Skip to content

Commit

Permalink
javadoc fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tzaeschke committed Oct 31, 2023
1 parent bfb9572 commit a55a922
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/org/tinspin/index/IndexConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ public static IndexConfig create(int dimensions) {
/**
* Number of dimensions.
* @param dimensions Number of dimensions of keys.
* @return this
*/
public IndexConfig setDimensions(int dimensions) {
this.dimensions = dimensions;
Expand All @@ -47,6 +48,7 @@ public IndexConfig setDimensions(int dimensions) {
* The latter obviously requires more memory. Default is 'true'.
* <p>
* This setting works only for kd-trees.
* @return this
*/
public IndexConfig setDefensiveKeyCopy(boolean defensiveKeyCopy) {
this.defensiveKeyCopy = defensiveKeyCopy;
Expand Down

0 comments on commit a55a922

Please sign in to comment.