Remove conditional override of IsSingleByte as we'll only define the ASCIIEncoding class on target frameworks that do not support this override.

This commit is contained in:
drieseng
2016-07-02 16:25:28 +02:00
parent eb56b0fae8
commit 0d569fb260
-13
View File
@@ -191,19 +191,6 @@ namespace Renci.SshNet.Common
return byteCount;
}
#if !SILVERLIGHT && !WINDOWS_PHONE
/// <summary>
/// Gets a value indicating whether the current encoding uses single-byte code points
/// </summary>
/// <value>
/// This property is always <c>true</c>.
/// </value>
public override bool IsSingleByte
{
get { return true; }
}
#endif // !SILVERLIGHT && !WINDOWS_PHONE
}
}