Update year in copyright lines
[Sone.git] / src / main / java / net / pterodactylus / sone / fcp / LockSoneCommand.java
index 5cad8ca..691bc4b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Sone - LockSoneCommand.java - Copyright © 2013 David Roden
+ * Sone - LockSoneCommand.java - Copyright © 2013–2019 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
@@ -23,7 +23,6 @@ import net.pterodactylus.sone.freenet.SimpleFieldSetBuilder;
 import net.pterodactylus.sone.freenet.fcp.FcpException;
 
 import freenet.support.SimpleFieldSet;
-import freenet.support.api.Bucket;
 
 import com.google.common.base.Optional;
 
@@ -31,8 +30,6 @@ import com.google.common.base.Optional;
  * Implements the “LockSone” FCP command. If a valid local Sone was given as
  * parameter “Sone,” this command will always lock the Sone and reply with
  * “SoneLocked.”
- *
- * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
  */
 public class LockSoneCommand extends AbstractSoneCommand {
 
@@ -51,7 +48,7 @@ public class LockSoneCommand extends AbstractSoneCommand {
        //
 
        @Override
-       public Response execute(SimpleFieldSet parameters, Bucket data, AccessType accessType) throws FcpException {
+       public Response execute(SimpleFieldSet parameters) throws FcpException {
                Optional<Sone> sone = getSone(parameters, "Sone", true, true);
                getCore().lockSone(sone.get());
                return new Response("SoneLocked", new SimpleFieldSetBuilder().put("Sone", sone.get().getId()).get());