bevy/crates/bevy_transform/src/hierarchy
Nathan Ward 00d8d5d5a0 fix clippy warning failing on CI (#2353)
# Objective

- CI jobs are starting to fail due to `clippy::bool-assert-comparison` and `clippy::single_component_path_imports` being triggered.

## Solution

- Fix all uses where `asset_eq!(<condition>, <bool>)` could be replace by `assert!`
- Move the `#[allow()]` for `single_component_path_imports` to `#![allow()]` at the start of the files.
2021-06-18 00:08:39 +00:00
..
child_builder.rs drop overwritten component data on double insert (#2227) 2021-05-30 20:15:40 +00:00
hierarchy_maintenance_system.rs Make Commands and World apis consistent (#1703) 2021-03-23 00:23:40 +00:00
hierarchy.rs fix clippy warning failing on CI (#2353) 2021-06-18 00:08:39 +00:00
mod.rs