From d5dbff576ad27f166e4777f9383694ecd7babf0e Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Wed, 6 Jul 2022 20:12:01 +0700 Subject: Fix a few warnings --- crypto/src/util/IEncodable.cs | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) (limited to 'crypto/src/util') diff --git a/crypto/src/util/IEncodable.cs b/crypto/src/util/IEncodable.cs index 29d5af7f8..426394f35 100644 --- a/crypto/src/util/IEncodable.cs +++ b/crypto/src/util/IEncodable.cs @@ -4,17 +4,9 @@ namespace Org.BouncyCastle.Utilities { public interface IEncodable { - /// - /// - /// - /// - /// - /// - // * Return a byte array representing the implementing object. - // * - // * @return a byte array representing the encoding. - // * @throws IOException if an issue arises generation the encoding. - // */ + /// Return a byte array representing the implementing object. + /// An encoding of this object as a byte array. + /// byte[] GetEncoded(); } -} \ No newline at end of file +} -- cgit 1.4.1