Merge branch 'master' into ai

This commit is contained in:
Konstantin Shandurenko 2021-03-01 16:17:24 +03:00
commit 412de5de20

View File

@ -28,7 +28,7 @@ public class TemporaryCache<T> {
this.keepTime = keepTime;
this.cache = CacheBuilder.newBuilder()
.expireAfterWrite(keepTime, TimeUnit.MILLISECONDS)
.weakValues()
.softValues()
.build();
}