From e48af769d6972c0c944500164984cc33eeb5340f Mon Sep 17 00:00:00 2001 From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch> Date: Fri, 2 Mar 2018 15:02:39 +0100 Subject: [PATCH] Remove redundant leftover qualifier. --- ATxCommon/FsUtils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ATxCommon/FsUtils.cs b/ATxCommon/FsUtils.cs index 446bb35..287669f 100644 --- a/ATxCommon/FsUtils.cs +++ b/ATxCommon/FsUtils.cs @@ -242,7 +242,7 @@ namespace ATxCommon try { // make sure the target directory that should hold all subdirectories to // be moved is existing: - if (string.IsNullOrEmpty(FsUtils.CreateNewDirectory(destPath, false))) { + if (string.IsNullOrEmpty(CreateNewDirectory(destPath, false))) { Log.Warn("WARNING: destination path doesn't exist: {0}", destPath); return false; } -- GitLab