From 0cc106b1685a35b13a170919444838dcee2a33ef Mon Sep 17 00:00:00 2001
From: Kelly Kelly <kelly@basistech.com>
Date: Thu, 27 Feb 2020 15:07:09 -0500
Subject: [PATCH] Updated method header

---
 .../datamodel/blackboardutils/GeoArtifactsHelper.java      | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/bindings/java/src/org/sleuthkit/datamodel/blackboardutils/GeoArtifactsHelper.java b/bindings/java/src/org/sleuthkit/datamodel/blackboardutils/GeoArtifactsHelper.java
index d8f307a4a..2e5db329c 100755
--- a/bindings/java/src/org/sleuthkit/datamodel/blackboardutils/GeoArtifactsHelper.java
+++ b/bindings/java/src/org/sleuthkit/datamodel/blackboardutils/GeoArtifactsHelper.java
@@ -58,7 +58,9 @@ public GeoArtifactsHelper(SleuthkitCase caseDb, String moduleName, String progra
 	}
 
 	/**
-	 * Add a Track from a GPS device to the database. 
+	 * Add a Track from a GPS device to the database. A Track represents a 
+	 * series of points that the device has traveled on. This will create a 
+	 * TSK_GPS_TRACK artifact and add it to the case.
 	 *
 	 * @param trackName			Name of GPS track, not required.
 	 * @param points			List of GeoTrackPoints that the track traversed.
@@ -100,7 +102,8 @@ public BlackboardArtifact addTrack(String trackName, GeoTrackPointList points, L
 	}
 
 	/**
-	 * Add a Route from a GPS device to the database.
+	 * Add a Route from a GPS device to the database. This will create a 
+	 * TSK_GPS_ROUTE artifact and add it to the case.
 	 *
 	 * @param routeName			Optional route name
 	 * @param creationTime		Time the route was created, optional.
-- 
GitLab