Upgrade to rustfmt 0.6.0

This commit is contained in:
Jakob Stoklund Olesen
2016-08-23 11:01:08 -07:00
parent 24870f0db9
commit 96b648056d
5 changed files with 6 additions and 18 deletions

View File

@@ -42,11 +42,7 @@ impl EntityRef for Ebb {
impl Ebb {
/// Create a new EBB reference from its number. This corresponds to the ebbNN representation.
pub fn with_number(n: u32) -> Option<Ebb> {
if n < u32::MAX {
Some(Ebb(n))
} else {
None
}
if n < u32::MAX { Some(Ebb(n)) } else { None }
}
}