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; }