X-Git-Url: https://git.pterodactylus.net/?p=jFCPlib.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Ffcp%2FPersistentGet.java;h=c7bfe2025ffb41c27223860159a845515e3fe995;hp=73a043ad35b644507c95677866493555a1d48ef9;hb=b171126719c983b590c51f22eb60a3e0afdf1fb9;hpb=572802370f7dff98b690df85b79e256335e28b33 diff --git a/src/main/java/net/pterodactylus/fcp/PersistentGet.java b/src/main/java/net/pterodactylus/fcp/PersistentGet.java index 73a043a..c7bfe20 100644 --- a/src/main/java/net/pterodactylus/fcp/PersistentGet.java +++ b/src/main/java/net/pterodactylus/fcp/PersistentGet.java @@ -20,7 +20,8 @@ package net.pterodactylus.fcp; /** * The “PersistentGet” message is sent to the client to inform it about a - * persistent download, either in the client-local queue or in the global queue. + * persistent download, either in the client-local queue or in the global + * queue. * * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ @@ -118,8 +119,8 @@ public class PersistentGet extends BaseMessage implements Identifiable { /** * Returns the persistence of the request. * - * @return The persistence of the request, or {@link Persistence#unknown} if - * the persistence could not be parsed + * @return The persistence of the request, or {@link Persistence#unknown} + * if the persistence could not be parsed */ public Persistence getPersistence() { try { @@ -143,9 +144,9 @@ public class PersistentGet extends BaseMessage implements Identifiable { /** * Returns the maximum number of retries for a failed block. * - * @return The maximum number of retries for a failed block, -1 - * for endless retries, -2 if the number could not be - * parsed + * @return The maximum number of retries for a failed block, + * -1 for endless retries, -2 if the + * number could not be parsed */ public int getMaxRetries() { return FcpUtils.safeParseInt(getField("MaxRetries"), -2);