aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Extensions/BaseExtensions.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-08-18 11:23:28 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-08-18 11:23:28 -0400
commitc59e49a8ede4516693cda4b9750a1c50eb29c8d1 (patch)
treeaabdf698b64e5818f1c76b7c04a61fcb3f19f36c /MediaBrowser.Common/Extensions/BaseExtensions.cs
parent2beb9861e41dee1ee23b22808fc0669155e54395 (diff)
revert single/multi transition. too risky for now.
Diffstat (limited to 'MediaBrowser.Common/Extensions/BaseExtensions.cs')
-rw-r--r--MediaBrowser.Common/Extensions/BaseExtensions.cs18
1 files changed, 0 insertions, 18 deletions
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
@@ -44,19 +44,6 @@ namespace MediaBrowser.Common.Extensions
/// <returns>Guid.</returns>
public static Guid GetMBId(this string str, Type type)
{
- return str.GetMBId(type, false);
- }
-
- /// <summary>
- /// Gets the MB id.
- /// </summary>
- /// <param name="str">The STR.</param>
- /// <param name="type">The type.</param>
- /// <param name="isInMixedFolder">if set to <c>true</c> [is in mixed folder].</param>
- /// <returns>Guid.</returns>
- /// <exception cref="System.ArgumentNullException">type</exception>
- public static Guid GetMBId(this string str, Type type, bool isInMixedFolder)
- {
if (type == null)
{
throw new ArgumentNullException("type");
@@ -64,11 +51,6 @@ namespace MediaBrowser.Common.Extensions
var key = type.FullName + str.ToLower();
- if (isInMixedFolder)
- {
- key += "InMixedFolder";
- }
-
return key.GetMD5();
}