Browse Source

fix compilation

pull/1390/head
Chris Lu 5 years ago
parent
commit
22f8aae028
  1. 2
      other/java/client/src/main/java/seaweedfs/client/ChunkCache.java

2
other/java/client/src/main/java/seaweedfs/client/ChunkCache.java

@ -21,7 +21,7 @@ public class ChunkCache {
public byte[] getChunk(String fileId) {
if (this.cache == null) {
return;
return null;
}
return this.cache.getIfPresent(fileId);
}

Loading…
Cancel
Save