diff --git a/Core/src/org/sleuthkit/autopsy/geolocation/datamodel/Route.java b/Core/src/org/sleuthkit/autopsy/geolocation/datamodel/Route.java index cda71c0e60..67de1e55ba 100755 --- a/Core/src/org/sleuthkit/autopsy/geolocation/datamodel/Route.java +++ b/Core/src/org/sleuthkit/autopsy/geolocation/datamodel/Route.java @@ -43,7 +43,7 @@ public class Route extends GeoPath { // constructor will take care of creating an unmodifiable List private final List propertiesList; - private static final TskGeoWaypointsUtil attributeUtil = new TskGeoWaypointsUtil(""); + private static final TskGeoWaypointsUtil attributeUtil = new TskGeoWaypointsUtil(); /** * Construct a route for the given artifact. diff --git a/Core/src/org/sleuthkit/autopsy/geolocation/datamodel/Track.java b/Core/src/org/sleuthkit/autopsy/geolocation/datamodel/Track.java index 3760c6f1eb..1a816179f6 100755 --- a/Core/src/org/sleuthkit/autopsy/geolocation/datamodel/Track.java +++ b/Core/src/org/sleuthkit/autopsy/geolocation/datamodel/Track.java @@ -38,7 +38,7 @@ public final class Track extends GeoPath{ private final Long startTimestamp; private final Long endTimeStamp; - private static final TskGeoTrackpointsUtil attributeUtil = new TskGeoTrackpointsUtil(""); + private static final TskGeoTrackpointsUtil attributeUtil = new TskGeoTrackpointsUtil(); /** * Construct a new Track for the given artifact. @@ -204,7 +204,7 @@ public final class Track extends GeoPath{ list.add(new Property(Bundle.Track_distanceTraveled_displayName(), value.toString())); } - value = point.getDistanceFromHP(); + value = point.getDistanceFromHomePoint(); if (value != null) { list.add(new Property(Bundle.Track_distanceFromHome_displayName(), value.toString())); }