package com.github.shansun.sparrow.cache.internal; import com.github.shansun.sparrow.cache.api.CacheSupplier; /** * @author lanbo <br> * @version 1.0 <br> * @date 2012-8-29 */ public class SyncCacheSupplier<K, V> implements CacheSupplier<K, V> { @Override public void supply(K key, V value) { } }