Fixed CustomSlot

This commit is contained in:
Auxilor
2022-09-29 13:41:29 +01:00
parent 6bd2f2b823
commit e667537404

View File

@@ -26,10 +26,6 @@ public abstract class CustomSlot implements Slot {
* @param slot The slot to delegate to.
*/
protected void init(@NotNull final Slot slot) {
if (delegate == null) {
throw new IllegalStateException("Custom Slot was not initialized!");
}
this.delegate = slot;
}