From 0d569fb260a2f0fb5dbdd625d08f2994817d0a2a Mon Sep 17 00:00:00 2001 From: drieseng Date: Sat, 2 Jul 2016 16:25:28 +0200 Subject: [PATCH] Remove conditional override of IsSingleByte as we'll only define the ASCIIEncoding class on target frameworks that do not support this override. --- src/Renci.SshNet/Common/ASCIIEncoding.cs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/Renci.SshNet/Common/ASCIIEncoding.cs b/src/Renci.SshNet/Common/ASCIIEncoding.cs index 5c18ce32..f37db557 100644 --- a/src/Renci.SshNet/Common/ASCIIEncoding.cs +++ b/src/Renci.SshNet/Common/ASCIIEncoding.cs @@ -191,19 +191,6 @@ namespace Renci.SshNet.Common return byteCount; } - -#if !SILVERLIGHT && !WINDOWS_PHONE - /// - /// Gets a value indicating whether the current encoding uses single-byte code points - /// - /// - /// This property is always true. - /// - public override bool IsSingleByte - { - get { return true; } - } -#endif // !SILVERLIGHT && !WINDOWS_PHONE } }