Index: src/Common/DelftTools.Utils/Serialization/IByteCompressor.cs
===================================================================
diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a
--- src/Common/DelftTools.Utils/Serialization/IByteCompressor.cs (.../IByteCompressor.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9)
+++ src/Common/DelftTools.Utils/Serialization/IByteCompressor.cs (.../IByteCompressor.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a)
@@ -1,22 +1,22 @@
namespace DelftTools.Utils.Serialization
{
- ///
- /// Interface to implement on a compressor class which can be used to compress/decompress the resulting byte array of the Fast serializer.
- ///
- public interface IByteCompressor
- {
- ///
- /// Compresses the specified serialized data.
- ///
- /// The serialized data.
- /// The passed in serialized data in compressed form
- byte[] Compress(byte[] serializedData);
+ ///
+ /// Interface to implement on a compressor class which can be used to compress/decompress the resulting byte array of the Fast serializer.
+ ///
+ public interface IByteCompressor
+ {
+ ///
+ /// Compresses the specified serialized data.
+ ///
+ /// The serialized data.
+ /// The passed in serialized data in compressed form
+ byte[] Compress(byte[] serializedData);
- ///
- /// Decompresses the specified compressed data.
- ///
- /// The compressed data.
- /// The passed in de-serialized data in compressed form
- byte[] Decompress(byte[] compressedData);
- }
+ ///
+ /// Decompresses the specified compressed data.
+ ///
+ /// The compressed data.
+ /// The passed in de-serialized data in compressed form
+ byte[] Decompress(byte[] compressedData);
+ }
}
\ No newline at end of file