Skip to content
Snippets Groups Projects
Commit ec5cab32 authored by Vojtech Moravec's avatar Vojtech Moravec
Browse files

Make buildTreeImpl private.

parent 047241bc
Branches
No related tags found
No related merge requests found
...@@ -57,7 +57,7 @@ public class KDTreeBuilder { ...@@ -57,7 +57,7 @@ public class KDTreeBuilder {
* @param featureVectors Feature vectors to build the tree with. * @param featureVectors Feature vectors to build the tree with.
* @return Node with its siblings. * @return Node with its siblings.
*/ */
public KDNode buildTreeImpl(final int[][] featureVectors) { private KDNode buildTreeImpl(final int[][] featureVectors) {
if (featureVectors.length <= bucketSize) { if (featureVectors.length <= bucketSize) {
return makeTerminalNode(featureVectors); return makeTerminalNode(featureVectors);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment