From 5609f1bf6b2bec95646cb45697d7c28bb46cd7af Mon Sep 17 00:00:00 2001 From: William Schaefer Date: Fri, 18 Jan 2019 15:44:22 -0500 Subject: [PATCH] 4632-4630-4629 clarify comment regarding early return in method checkForOSFiles --- .../src/org/sleuthkit/autopsy/recentactivity/ExtractOs.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractOs.java b/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractOs.java index 6693c059bd..3b6863ecb2 100644 --- a/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractOs.java +++ b/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractOs.java @@ -84,7 +84,7 @@ class ExtractOs extends Extract { */ private void checkForOSFiles(OS_TYPE osType) throws TskCoreException { if (osType.getOsInfoLabel().isEmpty()) { - //shortcut out if it was called with no OS Program nameartifacts to create + //shortcut out if it was called with out a specified program name so no OS INFO artifacts are created return; } FileManager fileManager = currentCase.getServices().getFileManager();