diff --git a/src/Umbraco.Web/Umbraco.Web.csproj b/src/Umbraco.Web/Umbraco.Web.csproj index c16363d3a6..ec73662bec 100644 --- a/src/Umbraco.Web/Umbraco.Web.csproj +++ b/src/Umbraco.Web/Umbraco.Web.csproj @@ -1704,7 +1704,6 @@ - Mvc\web.config diff --git a/src/Umbraco.Web/_Legacy/Utils/EncodedStringWriter.cs b/src/Umbraco.Web/_Legacy/Utils/EncodedStringWriter.cs deleted file mode 100644 index 94699f5687..0000000000 --- a/src/Umbraco.Web/_Legacy/Utils/EncodedStringWriter.cs +++ /dev/null @@ -1,42 +0,0 @@ -using System; -using System.IO; -using System.Text; - -namespace Umbraco.Web._Legacy.Utils -{ - - /// - /// A TextWriter class based on the StringWriter that can support any encoding, not just UTF-16 - /// as is the default of the normal StringWriter class - /// - [Obsolete("Remove this for v8")] - internal class EncodedStringWriter : StringWriter - { - - /// - /// Initializes a new instance of the class. - /// - /// The sb. - /// The enc. - public EncodedStringWriter(StringBuilder sb, Encoding enc) - : base(sb) - { - m_encoding = enc; - } - - private Encoding m_encoding; - - /// - /// Gets the in which the output is written. - /// - /// - /// The Encoding in which the output is written. - public override Encoding Encoding - { - get - { - return m_encoding; - } - } - } -}