Remove redundant cast

This commit is contained in:
Greg Fitzgerald
2018-09-07 10:00:20 -06:00
parent 7f99c90539
commit 50f040530b

View File

@ -65,7 +65,7 @@ fn find_next_missing(
return None;
}
let val = crdt.read().unwrap().window_index_request(pix as u64);
let val = crdt.read().unwrap().window_index_request(pix);
val.ok()
})
.collect()