Fixed PersistentDataKeyType.BIG_DECIMAL and javadoc

This commit is contained in:
Auxilor
2023-05-17 18:39:48 +01:00
parent fd92645500
commit 095494dd2e
2 changed files with 9 additions and 1 deletions

View File

@@ -17,6 +17,13 @@ import java.util.function.Supplier;
* @param <T> The type of integration.
*/
public class IntegrationRegistry<T extends Integration> extends Registry<T> {
/**
* Create a new integration registry.
*/
public IntegrationRegistry() {
super();
}
@Override
public @NotNull T register(@NotNull final T element) {
return executeSafely(() -> super.register(element), element);