From 31ee0183cdbdc1323bac9acc823b9c6002946b25 Mon Sep 17 00:00:00 2001 From: William Schaefer Date: Thu, 14 Jan 2021 16:21:59 -0500 Subject: [PATCH] 7225 document new method arguments --- .../autopsy/discovery/search/DiscoveryEventUtils.java | 3 ++- .../org/sleuthkit/autopsy/discovery/ui/MiniTimelinePanel.java | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/discovery/search/DiscoveryEventUtils.java b/Core/src/org/sleuthkit/autopsy/discovery/search/DiscoveryEventUtils.java index 6165ed2644..e228ce5f21 100644 --- a/Core/src/org/sleuthkit/autopsy/discovery/search/DiscoveryEventUtils.java +++ b/Core/src/org/sleuthkit/autopsy/discovery/search/DiscoveryEventUtils.java @@ -284,6 +284,7 @@ public final class DiscoveryEventUtils { * * @param results The list of MiniTimelineResults contained in this * event. + * @param domain The domain the results are for. */ public MiniTimelineResultEvent(List results, String domain) { if (results != null) { @@ -306,7 +307,7 @@ public final class DiscoveryEventUtils { * * @return The domain the list of results is for. */ - public String getDomain(){ + public String getDomain() { return domain; } } diff --git a/Core/src/org/sleuthkit/autopsy/discovery/ui/MiniTimelinePanel.java b/Core/src/org/sleuthkit/autopsy/discovery/ui/MiniTimelinePanel.java index 103d13fc3d..32c9e6bf6c 100644 --- a/Core/src/org/sleuthkit/autopsy/discovery/ui/MiniTimelinePanel.java +++ b/Core/src/org/sleuthkit/autopsy/discovery/ui/MiniTimelinePanel.java @@ -104,7 +104,8 @@ final class MiniTimelinePanel extends javax.swing.JPanel { /** * Manually set the status of the panel. * - * @param status The ArtifactRetrievalStatus of the panel. + * @param status The ArtifactRetrievalStatus of the panel + * @param domain The domain the panel is currently reflecting. */ @ThreadConfined(type = ThreadConfined.ThreadType.AWT) void setStatus(DomainArtifactsTabPanel.ArtifactRetrievalStatus status, String domain) {