1 files changed, 4 insertions, 12 deletions
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
{
- ///<summary>
- ///
- ///
- ///
- ///
- ///
- // * Return a byte array representing the implementing object.
- // *
- // * @return a byte array representing the encoding.
- // * @throws IOException if an issue arises generation the encoding.
- // */
+ /// <summary>Return a byte array representing the implementing object.</summary>
+ /// <returns>An encoding of this object as a byte array.</returns>
+ /// <exception cref="IOException"/>
byte[] GetEncoded();
}
-}
\ No newline at end of file
+}
|