From 1e10b58cffa61b060a6409d5d6d0cb5cc669aae3 Mon Sep 17 00:00:00 2001 From: Kelly Kelly Date: Thu, 30 Jan 2020 12:11:29 -0500 Subject: [PATCH] Addressed easy codacy issues --- Core/src/org/sleuthkit/autopsy/geolocation/KdTree.java | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/geolocation/KdTree.java b/Core/src/org/sleuthkit/autopsy/geolocation/KdTree.java index f4bcb2df8b..a18e5b359b 100755 --- a/Core/src/org/sleuthkit/autopsy/geolocation/KdTree.java +++ b/Core/src/org/sleuthkit/autopsy/geolocation/KdTree.java @@ -99,12 +99,6 @@ public class KdTree implements Iterable { static final int Y_AXIS = 1; static final int Z_AXIS = 2; - /** - * Default constructor. - */ - public KdTree() { - } - public KdNode getRoot() { return root; } @@ -571,9 +565,7 @@ public class KdTree implements Iterable { @Override public String toString() { StringBuilder builder = new StringBuilder(200); - builder.append("dimensions=").append(DIMENSIONS); - builder.append(" depth=").append(depth); - builder.append(" point=").append(getPoint().toString()); + builder.append("dimensions=").append(DIMENSIONS).append(" depth=").append(depth).append(" point=").append(getPoint().toString()); return builder.toString(); } }