mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix code
This commit is contained in:
@@ -46,7 +46,7 @@ public class LFUFileCache extends AbstractFileCache{
|
||||
@Override
|
||||
protected Cache<File, byte[]> initCache() {
|
||||
return new LFUCache<File, byte[]>(LFUFileCache.this.capacity, LFUFileCache.this.timeout) {
|
||||
private static final long serialVersionUID1 = 1L;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Override
|
||||
public boolean isFull() {
|
||||
|
@@ -46,7 +46,7 @@ public class LRUFileCache extends AbstractFileCache{
|
||||
@Override
|
||||
protected Cache<File, byte[]> initCache() {
|
||||
return new LRUCache<File, byte[]>(LRUFileCache.this.capacity, super.timeout) {
|
||||
private static final long serialVersionUID1 = 1L;
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@Override
|
||||
public boolean isFull() {
|
||||
|
Reference in New Issue
Block a user