From c59e49a8ede4516693cda4b9750a1c50eb29c8d1 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 18 Aug 2013 11:23:28 -0400 Subject: revert single/multi transition. too risky for now. --- MediaBrowser.Common/Extensions/BaseExtensions.cs | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'MediaBrowser.Common/Extensions/BaseExtensions.cs') diff --git a/MediaBrowser.Common/Extensions/BaseExtensions.cs b/MediaBrowser.Common/Extensions/BaseExtensions.cs index 0b63d7b31..6d95cfa57 100644 --- a/MediaBrowser.Common/Extensions/BaseExtensions.cs +++ b/MediaBrowser.Common/Extensions/BaseExtensions.cs @@ -43,19 +43,6 @@ namespace MediaBrowser.Common.Extensions /// The type. /// Guid. public static Guid GetMBId(this string str, Type type) - { - return str.GetMBId(type, false); - } - - /// - /// Gets the MB id. - /// - /// The STR. - /// The type. - /// if set to true [is in mixed folder]. - /// Guid. - /// type - public static Guid GetMBId(this string str, Type type, bool isInMixedFolder) { if (type == null) { @@ -64,11 +51,6 @@ namespace MediaBrowser.Common.Extensions var key = type.FullName + str.ToLower(); - if (isInMixedFolder) - { - key += "InMixedFolder"; - } - return key.GetMD5(); } -- cgit v1.2.3