Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin-j97 committed May 15, 2024
1 parent 245f336 commit ad7a4fa
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/levels/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,7 @@ impl LevelManifest {
level_manifest.read_exact(&mut magic)?;

if magic != LEVEL_MANIFEST_HEADER_MAGIC {
return Err(crate::Error::Deserialize(
DeserializeError::InvalidHeader,
));
return Err(crate::Error::Deserialize(DeserializeError::InvalidHeader));
}

let mut levels = vec![];
Expand Down

0 comments on commit ad7a4fa

Please sign in to comment.