From 72bd6a14306aa13f48a4f230216a8cfd60050592 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Thu, 14 Dec 2017 09:25:02 -0500 Subject: [PATCH] Whitespace --- ICD.Common.Utils/IO/IcdDirectory.cs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/ICD.Common.Utils/IO/IcdDirectory.cs b/ICD.Common.Utils/IO/IcdDirectory.cs index 8e56b40..3ac77ad 100644 --- a/ICD.Common.Utils/IO/IcdDirectory.cs +++ b/ICD.Common.Utils/IO/IcdDirectory.cs @@ -35,12 +35,13 @@ namespace ICD.Common.Utils.IO return Directory.GetFiles(path); } - public static string[] GetFiles(string path, string filter) - { - if(path == null) - throw new ArgumentException("path"); - return Directory.GetFiles(path, filter); - } + public static string[] GetFiles(string path, string filter) + { + if (path == null) + throw new ArgumentException("path"); + + return Directory.GetFiles(path, filter); + } public static string[] GetDirectories(string path) {