Skip to content

Commit faf36a7

Browse files
Satisfy the clippy gods
1 parent d5835c1 commit faf36a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_ecs/src/system/system.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ pub trait System: Send + Sync + 'static {
9696
self.initialize(world);
9797
let output = self.run(input, world);
9898
self.apply_buffers(world);
99-
return output;
99+
output
100100
}
101101
/// Applies any buffers (such as `Commands`) created by this system's parameters to the world
102102
fn apply_buffers(&mut self, world: &mut World);

0 commit comments

Comments
 (0)