Style: Manually revert changes made to SuccessResponse

This commit is contained in:
Mathis Ginkel
2026-04-11 14:37:13 +02:00
parent b4b2e3b067
commit a65341b648
@@ -9,14 +9,14 @@ import ch.unibas.dmi.dbis.cs108.casono.server.network.protocol.response.builder.
* <p>Implementations of this class use the {@code +OK} prefix. It provides a protected constructor * <p>Implementations of this class use the {@code +OK} prefix. It provides a protected constructor
* so subclasses can supply the response body content. * so subclasses can supply the response body content.
*/ */
public class SuccessResponse extends Response { public abstract class SuccessResponse extends Response {
/** /**
* Create a successful response with the provided body. * Create a successful response with the provided body.
* *
* @param context the RequestContext of the request * @param context the RequestContext of the request
* @param body the response body * @param body the response body
*/ */
public SuccessResponse(RequestContext context, ResponseBody body) { protected SuccessResponse(RequestContext context, ResponseBody body) {
super(context, body); super(context, body);
} }