diff options
author | Alex Auvolat <alex@adnab.me> | 2020-04-21 17:08:42 +0000 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2020-04-21 17:08:42 +0000 |
commit | ec59e896c6cf405a0e52392ebb8619f26a367968 (patch) | |
tree | 4065518f40a7aa40a6c13506be43706061e795e8 /src/version_table.rs | |
parent | 8915224966e41195bd5844d9df29a3f0c7d7d6ae (diff) | |
download | garage-ec59e896c6cf405a0e52392ebb8619f26a367968.tar.gz garage-ec59e896c6cf405a0e52392ebb8619f26a367968.zip |
Make UUID & Hash Copy and remove some .clone() noise
Diffstat (limited to 'src/version_table.rs')
-rw-r--r-- | src/version_table.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/version_table.rs b/src/version_table.rs index 230b7f1c..74174dce 100644 --- a/src/version_table.rs +++ b/src/version_table.rs @@ -77,8 +77,8 @@ impl TableSchema for VersionTable { .blocks .iter() .map(|vb| BlockRef { - block: vb.hash.clone(), - version: old_v.uuid.clone(), + block: vb.hash, + version: old_v.uuid, deleted: true, }) .collect::<Vec<_>>(); |