// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.function.supplier;

import javax.annotation.Nonnull;
import java.util.function.Supplier;

public class SupplierUtil
{
    @Nonnull
    public static <T> CachedSupplier<T> cache(final Supplier<T> delegate) {
        return new CachedSupplier<T>(delegate);
    }
}
