More whitespace fixes.
[jFCPlib.git] / src / net / pterodactylus / fcp / FinishedCompression.java
index ca9a6cc..9d09d62 100644 (file)
@@ -21,7 +21,7 @@ package net.pterodactylus.fcp;
 /**
  * A “FinishedCompression” message signals the client that the compression of
  * the request data has been finished.
- * 
+ *
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
  */
 public class FinishedCompression extends BaseMessage {
@@ -29,7 +29,7 @@ public class FinishedCompression extends BaseMessage {
        /**
         * Creates a new “FinishedCompression” message that wraps the received
         * message.
-        * 
+        *
         * @param receivedMessage
         *            The message that was recevied
         */
@@ -39,7 +39,7 @@ public class FinishedCompression extends BaseMessage {
 
        /**
         * Returns the identifier of the request.
-        * 
+        *
         * @return The identifier of the request
         */
        public String getIdentifier() {
@@ -48,7 +48,7 @@ public class FinishedCompression extends BaseMessage {
 
        /**
         * Returns the ID of the codec that was used for compression.
-        * 
+        *
         * @return The ID of the codec that was used for compression
         */
        public int getCodec() {
@@ -57,7 +57,7 @@ public class FinishedCompression extends BaseMessage {
 
        /**
         * Returns the original size of the data (i.e. before compression).
-        * 
+        *
         * @return The original size of the data
         */
        public long getOriginalSize() {
@@ -66,7 +66,7 @@ public class FinishedCompression extends BaseMessage {
 
        /**
         * Returns the compressed size of the data (i.e. after compression).
-        * 
+        *
         * @return The compressed size of the data
         */
        public long getCompressedSize() {