From eb0f20f9e0b9299010e98e18ff191fac11bf1d0f Mon Sep 17 00:00:00 2001 From: momo Date: Fri, 25 Sep 2015 12:57:13 -0400 Subject: [PATCH] fix comment formatting --- Core/src/org/sleuthkit/autopsy/coreutils/FileUtil.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Core/src/org/sleuthkit/autopsy/coreutils/FileUtil.java b/Core/src/org/sleuthkit/autopsy/coreutils/FileUtil.java index b694422e38..9ad957d8c3 100644 --- a/Core/src/org/sleuthkit/autopsy/coreutils/FileUtil.java +++ b/Core/src/org/sleuthkit/autopsy/coreutils/FileUtil.java @@ -164,8 +164,7 @@ public class FileUtil { */ public static String escapeFileName(String fileName) { //for now escaping /:"*?<>| (not valid in file name, at least on Windows) - //with underscores. - //We are only keeping \ as it could be part of the path + //with underscores. We are only keeping \ as it could be part of the path. return fileName.replaceAll("[\\/:\"*?<>|]+", "_"); } }