From e8d7c45ccac4e8cf81353a81f78199afdd425c61 Mon Sep 17 00:00:00 2001 From: Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch> Date: Thu, 25 Apr 2019 15:19:55 +0200 Subject: [PATCH] Use namespace shortcut --- ATxCommon/SystemChecks.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ATxCommon/SystemChecks.cs b/ATxCommon/SystemChecks.cs index f5ddebf..cd8aed8 100644 --- a/ATxCommon/SystemChecks.cs +++ b/ATxCommon/SystemChecks.cs @@ -4,6 +4,7 @@ using System.Diagnostics; using System.IO; using System.Linq; using System.Management; +using ATxCommon.Serializables; using NLog; namespace ATxCommon @@ -55,7 +56,7 @@ namespace ATxCommon /// Check all configured disks for their free space and generate a /// summary with details to be used in a notification message. /// </summary> - public static string CheckFreeDiskSpace(List<Serializables.DriveToCheck> drives) { + public static string CheckFreeDiskSpace(List<DriveToCheck> drives) { var msg = ""; foreach (var driveToCheck in drives) { var freeSpace = GetFreeDriveSpace(driveToCheck.DriveName); -- GitLab