code hint fixes

This commit is contained in:
honfika@gmail.com
2015-01-19 12:18:49 +01:00
parent e4e9676081
commit df518ff503
6 changed files with 51 additions and 40 deletions

View File

@@ -99,7 +99,9 @@ public class EntryStore extends CacheEntry {
}
self_hash = iis.readUInt32();
key = new byte[256 - 24 * 4];
iis.read(key);
if (iis.read(key) != key.length) {
throw new IOException();
}
}
public HttpResponseInfo getResponseInfo() {