This commit is contained in:
Rob Walker
2018-07-19 15:14:58 -07:00
parent f60ee87a52
commit 54f2146429

View File

@ -47,7 +47,6 @@ pub fn reconstruct_entries_from_blobs(blobs: VecDeque<SharedBlob>) -> bincode::R
for blob in blobs { for blob in blobs {
let entry = { let entry = {
let msg = blob.read().unwrap(); let msg = blob.read().unwrap();
deserialize(&msg.data()[..msg.meta.size]) deserialize(&msg.data()[..msg.meta.size])
}; };