NoIssue: Add some default interface implementations.

This commit is contained in:
2026-01-28 12:04:31 +01:00
parent 3e053480ed
commit db2335c259

View File

@@ -7,8 +7,8 @@ import org.jetbrains.annotations.NotNull;
public interface NenjimProcess {
void run() throws Exception;
void setContext(@NotNull Context context);
void setHub(@NotNull NenjimHub hub);
default void setContext(@NotNull Context context) {};
default void setHub(@NotNull NenjimHub hub) {};
@NotNull String getName();
}