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

Move return oit of the `if` branch.

parent 6c6e06e1
No related branches found
No related tags found
No related merge requests found
...@@ -52,8 +52,8 @@ public class KDNode { ...@@ -52,8 +52,8 @@ public class KDNode {
if (ballWithinBounds(queryRecord, searchInfo)) { if (ballWithinBounds(queryRecord, searchInfo)) {
searchInfo.setContinueSearching(false); searchInfo.setContinueSearching(false);
return;
} }
return;
} }
assert (loSon != null && hiSon != null); assert (loSon != null && hiSon != null);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment