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) {