Remove handling IHttpResult

This commit is contained in:
softworkz
2016-08-05 19:07:43 +02:00
parent 433254c498
commit 7d16988b1b
3 changed files with 0 additions and 159 deletions

View File

@@ -706,11 +706,6 @@ namespace MediaBrowser.Server.Implementations.HttpServer
public object GetAsyncStreamWriter(IAsyncStreamSource streamSource)
{
if (streamSource as IHttpResult != null)
{
return new AsyncStreamWriterEx(streamSource);
}
return new AsyncStreamWriter(streamSource);
}
}