diff --git a/ICD.Common.Utils/PathUtils.cs b/ICD.Common.Utils/PathUtils.cs index 80a6e6d..250a6a5 100644 --- a/ICD.Common.Utils/PathUtils.cs +++ b/ICD.Common.Utils/PathUtils.cs @@ -4,7 +4,6 @@ using System.Linq; using ICD.Common.Properties; using ICD.Common.Services; using ICD.Common.Services.Logging; -using ICD.Common.Utils.Extensions; using ICD.Common.Utils.IO; namespace ICD.Common.Utils @@ -195,28 +194,6 @@ namespace ICD.Common.Utils return Join(ProgramConfigPath, local); } - /// - /// Searches the application path, program config path and common config path to - /// find the first IR driver that exists with the given local path. - /// - /// - /// - public static string GetIrDriversPath(params string[] localPath) - { - return GetDefaultConfigPath(localPath.Prepend("IRDrivers").ToArray()); - } - - /// - /// Searches the application path, program config path and common config path to - /// find the first SSL Driver that exists with the given local path. - /// - /// - /// - public static string GetSslCertificatesPath(params string[] localPath) - { - return GetDefaultConfigPath(localPath.Prepend("SSLCertificates").ToArray()); - } - /// /// Returns true if the given path exists. ///