Fix copyright line.
[jFCPlib.git] / src / net / pterodactylus / fcp / PutFailed.java
index 6eedc05..a98e02b 100644 (file)
@@ -1,6 +1,5 @@
 /*
- * jSite2 - GetFailed.java -
- * Copyright © 2008 David Roden
+ * jFCPlib - GetFailed.java - Copyright © 2008 David Roden
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -30,7 +29,6 @@ import java.util.Map.Entry;
  * request will be sent.
  * 
  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
- * @version $Id$
  */
 public class PutFailed extends BaseMessage {
 
@@ -47,8 +45,8 @@ public class PutFailed extends BaseMessage {
        /**
         * Returns the code of the error.
         * 
-        * @return The code of the error, or <code>-1</code> if the error code
-        *         could not be parsed
+        * @return The code of the error, or <code>-1</code> if the error code could
+        *         not be parsed
         */
        public int getCode() {
                return FcpUtils.safeParseInt(getField("Code"));
@@ -130,7 +128,7 @@ public class PutFailed extends BaseMessage {
        public int[] getComplexErrorCodes() {
                Map<String, String> allFields = getFields();
                List<Integer> errorCodeList = new ArrayList<Integer>();
-               for (Entry<String, String> field: allFields.entrySet()) {
+               for (Entry<String, String> field : allFields.entrySet()) {
                        String fieldKey = field.getKey();
                        if (fieldKey.startsWith("Errors.")) {
                                int nextDot = fieldKey.indexOf('.', 7);
@@ -144,7 +142,7 @@ public class PutFailed extends BaseMessage {
                }
                int[] errorCodes = new int[errorCodeList.size()];
                int errorIndex = 0;
-               for (int errorCode: errorCodeList) {
+               for (int errorCode : errorCodeList) {
                        errorCodes[errorIndex++] = errorCode;
                }
                return errorCodes;