Merge pull request #1294 from matthiasbeyer/libimagstore/store-debug-fix
Simplify Store debug impl
This commit is contained in:
commit
7653a040da
1 changed files with 1 additions and 4 deletions
|
@ -752,10 +752,7 @@ impl Store {
|
|||
impl Debug for Store {
|
||||
|
||||
fn fmt(&self, fmt: &mut Formatter) -> RResult<(), FMTError> {
|
||||
write!(fmt,
|
||||
r#"Store\n\tlocation = {:?}\n\tentries = {:?}\n"#,
|
||||
self.location,
|
||||
self.entries)
|
||||
writeln!(fmt, "Store location = {:?}, entries = {:?}", self.location, self.entries)
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue