summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2019-11-10 01:00:45 +0100
committerMatthias Beyer <mail@beyermatthias.de>2019-12-21 15:49:42 +0100
commit1c292f0579cda1a07c84428704ef372a71c3eb7a (patch)
treec669810cee23a21b9c906e9777aae4c68bc724fe
parent917af5e39dca0c3ee84e10289e32180b234ee952 (diff)
Remove unused reference symbol
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--bin/core/imag-diagnostics/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/core/imag-diagnostics/src/lib.rs b/bin/core/imag-diagnostics/src/lib.rs
index 5517d622..24e1b915 100644
--- a/bin/core/imag-diagnostics/src/lib.rs
+++ b/bin/core/imag-diagnostics/src/lib.rs
@@ -94,7 +94,7 @@ impl Diagnostic {
})
.unwrap_or_else(|_| "Error reading version".to_owned()),
header_sections: match entry.get_header() {
- &Value::Table(ref map) => map.keys().count(),
+ Value::Table(ref map) => map.keys().count(),
_ => 0
},
bytecount_content: entry.get_content().as_str().len(),