Remove duplicate type
This commit is contained in:
parent
4e004c22ba
commit
cf09af52eb
|
|
@ -1,18 +0,0 @@
|
||||||
// Copyright (c) .NET Foundation. All rights reserved.
|
|
||||||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
||||||
|
|
||||||
using System.IO;
|
|
||||||
using System.Text;
|
|
||||||
using Microsoft.AspNetCore.Mvc.Internal;
|
|
||||||
using Microsoft.AspNetCore.WebUtilities;
|
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.Mvc
|
|
||||||
{
|
|
||||||
public class TestHttpResponseStreamWriterFactory : IHttpResponseStreamWriterFactory
|
|
||||||
{
|
|
||||||
public TextWriter CreateWriter(Stream stream, Encoding encoding)
|
|
||||||
{
|
|
||||||
return new HttpResponseStreamWriter(stream, encoding);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue