Update to graalvm 20 and some small adjustments [stage]

This commit is contained in:
crschnick
2023-07-19 08:50:19 +00:00
parent 3c7967d2c0
commit 8143f69da2
7 changed files with 33 additions and 10 deletions

View File

@@ -35,6 +35,10 @@ public interface DataStoreProvider {
default void preAdd(DataStore store) {}
default boolean shouldEdit() {
return false;
}
default Comp<?> customDisplay(StoreSection s) {
return new StandardStoreEntryComp(s.getWrapper(), null);
}