hytale-server/com/hypixel/hytale/function/supplier/SupplierUtil.java

12 lines
278 B
Java

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