Remove superfluous super call

pull/61/head
Richard Körber 2018-03-11 16:37:34 +01:00
parent bd398365c7
commit 04d00fc2c5
No known key found for this signature in database
GPG Key ID: AAB9FD19C78AA3E0
1 changed files with 0 additions and 6 deletions

View File

@ -22,7 +22,6 @@ import org.jose4j.lang.JoseException;
import org.shredzone.acme4j.Login;
import org.shredzone.acme4j.exception.AcmeProtocolException;
import org.shredzone.acme4j.toolbox.JSON;
import org.shredzone.acme4j.toolbox.JSONBuilder;
/**
* An extension of {@link Challenge} that handles challenges with a {@code token} and
@ -45,11 +44,6 @@ public class TokenChallenge extends Challenge {
super(login, data);
}
@Override
protected void prepareResponse(JSONBuilder response) {
super.prepareResponse(response);
}
/**
* Gets the token.
*/