X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ffcp%2FDeletePostCommand.java;h=b2fbd54798712a7b6ef1942448901c278b9f8331;hp=3cfb102532ff881de6da81791e534abe5f08fc85;hb=62573c314957b1851f4fbe693b8746686caa940a;hpb=10d9eb5fcea8440b9ea06a3732678b286090934f diff --git a/src/main/java/net/pterodactylus/sone/fcp/DeletePostCommand.java b/src/main/java/net/pterodactylus/sone/fcp/DeletePostCommand.java index 3cfb102..b2fbd54 100644 --- a/src/main/java/net/pterodactylus/sone/fcp/DeletePostCommand.java +++ b/src/main/java/net/pterodactylus/sone/fcp/DeletePostCommand.java @@ -22,13 +22,11 @@ import net.pterodactylus.sone.data.Post; import net.pterodactylus.sone.freenet.SimpleFieldSetBuilder; import net.pterodactylus.sone.freenet.fcp.FcpException; import freenet.support.SimpleFieldSet; -import freenet.support.api.Bucket; /** * FCP command that deletes a {@link Post}. * * @see Core#deletePost(Post) - * @author David ‘Bombe’ Roden */ public class DeletePostCommand extends AbstractSoneCommand { @@ -46,7 +44,7 @@ public class DeletePostCommand extends AbstractSoneCommand { * {@inheritDoc} */ @Override - public Response execute(SimpleFieldSet parameters, Bucket data, AccessType accessType) throws FcpException { + public Response execute(SimpleFieldSet parameters) throws FcpException { Post post = getPost(parameters, "Post"); if (!post.getSone().isLocal()) { return new ErrorResponse(401, "Not allowed.");