Removed dead code

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-09-08 10:56:29 -04:00
parent 93b42641d2
commit fe63d487be
2 changed files with 0 additions and 15 deletions

View File

@@ -1,14 +0,0 @@
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Linq;
namespace MediaBrowser.Common.Net
{
public static class CollectionExtensions
{
public static IDictionary<string, IEnumerable<string>> ToDictionary(this NameValueCollection source)
{
return source.AllKeys.ToDictionary<string, string, IEnumerable<string>>(key => key, source.GetValues);
}
}
}