package com.hypixel.hytale.function.supplier; import java.util.function.Supplier; import javax.annotation.Nonnull; public class SupplierUtil { @Nonnull public static CachedSupplier cache(Supplier delegate) { return new CachedSupplier<>(delegate); } }