feat[cache]: set cache of Single Cache

This commit is contained in:
godotg
2023-04-15 15:14:04 +08:00
parent a36e6eb77d
commit a5695d00d7
@@ -70,4 +70,8 @@ public class SingleCache<V> {
return cache;
}
public void set(V value) {
cache = value;
}
}