소스 검색

Removed dead code

LukePulverenti Luke Pulverenti luke pulverenti 12 년 전
부모
커밋
fe63d487be
2개의 변경된 파일0개의 추가작업 그리고 15개의 파일을 삭제
  1. 0 1
      MediaBrowser.Common/MediaBrowser.Common.csproj
  2. 0 14
      MediaBrowser.Common/Net/CollectionExtensions.cs

+ 0 - 1
MediaBrowser.Common/MediaBrowser.Common.csproj

@@ -95,7 +95,6 @@
     <Compile Include="Logging\LogRow.cs" />
     <Compile Include="Logging\LogRow.cs" />
     <Compile Include="Logging\LogSeverity.cs" />
     <Compile Include="Logging\LogSeverity.cs" />
     <Compile Include="Logging\StreamLogger.cs" />
     <Compile Include="Logging\StreamLogger.cs" />
-    <Compile Include="Net\CollectionExtensions.cs" />
     <Compile Include="Net\Handlers\BaseEmbeddedResourceHandler.cs" />
     <Compile Include="Net\Handlers\BaseEmbeddedResourceHandler.cs" />
     <Compile Include="Net\Handlers\BaseHandler.cs" />
     <Compile Include="Net\Handlers\BaseHandler.cs" />
     <Compile Include="Net\Handlers\BaseSerializationHandler.cs" />
     <Compile Include="Net\Handlers\BaseSerializationHandler.cs" />

+ 0 - 14
MediaBrowser.Common/Net/CollectionExtensions.cs

@@ -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);
-        }
-    }
-}