aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTeddy Wing2021-06-13 13:31:25 +0200
committerTeddy Wing2021-06-13 13:31:25 +0200
commitf5e63179e6ab176d145e96786df9d3d0bdaaf7a1 (patch)
treed16888750b3ca39c668806e94fee9f2f6a92333b /src
parent7ec559e6b717560522976c6c5a410ccff3785b04 (diff)
downloadreflectub-f5e63179e6ab176d145e96786df9d3d0bdaaf7a1.tar.bz2
MultiError: Remove old `errors` field
Decided to use 'anyhow' errors instead of a generic boxed error.
Diffstat (limited to 'src')
-rw-r--r--src/main.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 8d97239..8331237 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -51,7 +51,6 @@ fn main() {
#[derive(Debug, thiserror::Error)]
struct MultiError {
errors: Vec<anyhow::Error>,
- // errors: Vec<Box<dyn std::error::Error>>,
}
impl fmt::Display for MultiError {