Skip to content

Commit

Permalink
refactor: rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
BD103 committed Jun 12, 2024
1 parent e0437c1 commit 6a28c46
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
4 changes: 1 addition & 3 deletions file-size/src/bin/default.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
use bevy::prelude::*;

fn main() -> AppExit {
App::new()
.add_plugins(DefaultPlugins)
.run()
App::new().add_plugins(DefaultPlugins).run()
}
3 changes: 1 addition & 2 deletions file-size/src/bin/empty.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use bevy::prelude::*;

fn main() -> AppExit {
App::new()
.run()
App::new().run()
}
4 changes: 1 addition & 3 deletions file-size/src/bin/minimal.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
use bevy::prelude::*;

fn main() -> AppExit {
App::new()
.add_plugins(MinimalPlugins)
.run()
App::new().add_plugins(MinimalPlugins).run()
}

0 comments on commit 6a28c46

Please sign in to comment.