From eb34a74b04d844caa4fe529fa2f1faa675cc46bd Mon Sep 17 00:00:00 2001 From: "U-BASIS\\dsmyda" Date: Thu, 7 Nov 2019 13:49:18 -0500 Subject: [PATCH] Fixed comment --- .../autopsy/datasourceprocessors/xry/XRYFileReader.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/datasourceprocessors/xry/XRYFileReader.java b/Core/src/org/sleuthkit/autopsy/datasourceprocessors/xry/XRYFileReader.java index 67c266688f..4d56c66512 100755 --- a/Core/src/org/sleuthkit/autopsy/datasourceprocessors/xry/XRYFileReader.java +++ b/Core/src/org/sleuthkit/autopsy/datasourceprocessors/xry/XRYFileReader.java @@ -95,8 +95,7 @@ public class XRYFileReader { BasicFileAttributes attr = Files.readAttributes(file, BasicFileAttributes.class, LinkOption.NOFOLLOW_LINKS); - //Do not follow symbolic links. XRY files most definitely cannot be a - //directory. + //Do not follow symbolic links. XRY files cannot be a directory. if (attr.isSymbolicLink() || attr.isDirectory()) { return false; }