From 36d9db4fb6bc33385fe077f3da6a043fdc5884c0 Mon Sep 17 00:00:00 2001 From: Sven Amann Date: Tue, 18 Jun 2019 14:19:58 +0200 Subject: [PATCH] Improve a comment. --- UploadDaemon/Archiving/Archive.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UploadDaemon/Archiving/Archive.cs b/UploadDaemon/Archiving/Archive.cs index b86a1037..570fedaa 100644 --- a/UploadDaemon/Archiving/Archive.cs +++ b/UploadDaemon/Archiving/Archive.cs @@ -41,7 +41,7 @@ public void ArchiveLineCoverage(string fileName, string lineCoverageReport) return; } - // make sure there's no .. or other path components in the file name + // Remove path components from file name. string sanitizedFileName = Path.GetFileName(fileName); string targetPath = Path.Combine(lineCoverageDirectory, sanitizedFileName); try