Remove a write of empty string

This commit is contained in:
Shotaro Yamada 2019-03-29 17:27:56 +09:00
parent a2d9b6d1b1
commit 6e288fdae0

View File

@ -225,7 +225,7 @@ impl fmt::Display for UseTree {
write!(f, "::")?;
}
}
write!(f, "")
Ok(())
}
}