feat(core): add Context generic
All checks were successful
Build / Gradle-Build (push) Successful in 15s
Publish / Gradle-Publish (push) Successful in 13s
Test / Gradle-Test (push) Successful in 13s

This commit is contained in:
2025-04-11 20:44:03 +02:00
parent c44b874b41
commit 2a6eba871d
13 changed files with 77 additions and 77 deletions

View File

@@ -1,7 +1,7 @@
package net.tomatentum.cutin;
public interface MethodExecutor {
public interface MethodExecutor<C extends Object> {
void handle(Object context);
void handle(C context);
}