remove unused code

This commit is contained in:
2025-05-25 06:10:55 +03:00
parent 0a7de4fb9b
commit 18571e0e0e

View File

@ -10,11 +10,4 @@ public interface Action {
after.execute();
};
}
default Action compose(Action before) {
return () -> {
before.execute();
this.execute();
};
}
}