Fix: Resolving Git Merge Conflicts #253

Merged
j.kropff merged 69 commits from chore/ui-checkstyle-fixes into main 2026-04-11 15:10:58 +02:00
Showing only changes of commit a65341b648 - Show all commits
@@ -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);
} }