refactor: fix benchmarks

pull/24376/head
Edd Robinson 2021-04-08 19:03:21 +01:00 committed by kodiakhq[bot]
parent 738134004e
commit be369689f2
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ impl TableData {
impl Chunk {
/// Initialises a new `Chunk` with the associated chunk ID.
pub(crate) fn new(id: u32) -> Self {
pub fn new(id: u32) -> Self {
Self {
id,
chunk_data: RwLock::new(TableData::default()),