From 18649cc7617ee0de512af5b23f490bcfd1ed0648 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Mon, 9 Oct 2017 14:25:13 -0400 Subject: [PATCH] Removing specific config paths from PathUtils --- ICD.Common.Utils/PathUtils.cs | 23 ----------------------- 1 file changed, 23 deletions(-) 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. ///