remove unnecessary Debug impl for BacktraceFrame

This commit is contained in:
Jane Lusby 2020-02-10 15:17:40 -08:00
parent 0d5444ffa6
commit 76e6d6fe11

View File

@ -178,12 +178,6 @@ impl fmt::Debug for Backtrace {
}
}
impl fmt::Debug for BacktraceFrame {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
fmt.debug_list().entries(&self.symbols).finish()
}
}
impl fmt::Debug for BacktraceSymbol {
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
let mut dbg = fmt.debug_struct("");