Whitespace

This commit is contained in:
Chris Cameron
2017-12-14 09:25:02 -05:00
parent 30afd0391d
commit 72bd6a1430

View File

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