Not closing the objectStream here is BAD.

This commit is contained in:
GJ 2013-01-18 15:28:42 -05:00
parent f72b1e7eec
commit ed68f227ac

View File

@ -79,6 +79,9 @@ public class HashChunkManager implements ChunkManager {
return null;
//throw new RuntimeException("Unable to find serialized class for " + x + ", " + z, e);
}
finally {
objectStream.close();
}
}
@Override