Change execute method in CommandHandler to be abstract #247

Merged
lars.winzer merged 1 commits from fix/64-execute-method-of-commandhandler-is-not-abstract into main 2026-04-09 19:17:28 +02:00
Showing only changes of commit 4071be3341 - Show all commits
@@ -52,5 +52,5 @@ public abstract class CommandHandler<T extends Request> {
*
* @param request the request to execute, of type T
*/
public void execute(T request) {}
public abstract void execute(T request);
}