This commit is contained in:
zzz
2018-08-25 17:56:30 +00:00
parent 21fbcb8749
commit 819985f3b4
3 changed files with 3 additions and 3 deletions

View File

@ -71,7 +71,7 @@ public final class SimpleByteCache {
}
private SimpleByteCache(int maxCachedEntries, int entrySize) {
_available = new TryCache(new ByteArrayFactory(entrySize), maxCachedEntries);
_available = new TryCache<byte[]>(new ByteArrayFactory(entrySize), maxCachedEntries);
_entrySize = entrySize;
}