remove unneeded field

This commit is contained in:
Robin Appelman 2024-07-30 22:46:16 +02:00
commit c946b9a8a6
2 changed files with 0 additions and 2 deletions

View file

@ -64,7 +64,6 @@ pub struct Exception {
pub exception: String, pub exception: String,
pub file: String, pub file: String,
pub line: usize, pub line: usize,
pub previous: Option<Box<Exception>>,
} }
impl Hash for Exception { impl Hash for Exception {

View file

@ -267,7 +267,6 @@ fn test_matcher() {
exception: "Bar\\FooException".into(), exception: "Bar\\FooException".into(),
file: "short".into(), file: "short".into(),
line: 68, line: 68,
previous: None,
}), }),
time: OffsetDateTime::now_utc(), time: OffsetDateTime::now_utc(),
index: 0, index: 0,