X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Ffcp%2FPersistentRequestRemoved.java;h=c9ec8263e855388162fe753aa3fd17d29851809f;hb=b171126719c983b590c51f22eb60a3e0afdf1fb9;hp=154c88c8064a295d71166ab0975c4941c7094b6b;hpb=508624458578f01a393f8b44f32b98b40054fdc8;p=jFCPlib.git diff --git a/src/main/java/net/pterodactylus/fcp/PersistentRequestRemoved.java b/src/main/java/net/pterodactylus/fcp/PersistentRequestRemoved.java index 154c88c..c9ec826 100644 --- a/src/main/java/net/pterodactylus/fcp/PersistentRequestRemoved.java +++ b/src/main/java/net/pterodactylus/fcp/PersistentRequestRemoved.java @@ -24,7 +24,7 @@ package net.pterodactylus.fcp; * * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ -public class PersistentRequestRemoved extends BaseMessage { +public class PersistentRequestRemoved extends BaseMessage implements Identifiable { /** * Creates a new “PersistentRequestRemoved” message that wraps the received @@ -42,6 +42,7 @@ public class PersistentRequestRemoved extends BaseMessage { * * @return The identifier of the request */ + @Override public String getIdentifier() { return getField("Identifier"); } @@ -50,8 +51,8 @@ public class PersistentRequestRemoved extends BaseMessage { * Returns whether the request was removed from the global queue. * * @return true if the request was removed from the global - * queue, false if it was removed from the client-local - * queue + * queue, false if it was removed from the + * client-local queue */ public boolean isGlobal() { return Boolean.valueOf(getField("Global"));