bevy/crates/bevy_asset/src/io
akimakinai f821768e62
Resolve unused_qualifications warnings (#16001)
# Objective

Fixes the following warning when compiling to wasm.

```
warning: unnecessary qualification
   --> crates\bevy_asset\src\io\mod.rs:733:19
    |
733 |         _cx: &mut core::task::Context<'_>,
    |                   ^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: requested on the command line with `-W unused-qualifications`
help: remove the unnecessary path segments
    |
733 -         _cx: &mut core::task::Context<'_>,
733 +         _cx: &mut Context<'_>,
    |
```

## Solution

- Removes the qualification.
2024-10-19 16:59:58 +00:00
..
embedded Add core and alloc over std Lints (#15281) 2024-09-27 00:59:59 +00:00
file Replace AsyncSeek trait by AsyncSeekForward for Reader to address #12880 (#14194) 2024-10-01 03:33:45 +00:00
android.rs move ANDROID_APP to bevy_window (#15585) 2024-10-02 03:01:06 +00:00
gated.rs Add core and alloc over std Lints (#15281) 2024-09-27 00:59:59 +00:00
memory.rs Replace AsyncSeek trait by AsyncSeekForward for Reader to address #12880 (#14194) 2024-10-01 03:33:45 +00:00
mod.rs Resolve unused_qualifications warnings (#16001) 2024-10-19 16:59:58 +00:00
processor_gated.rs Replace AsyncSeek trait by AsyncSeekForward for Reader to address #12880 (#14194) 2024-10-01 03:33:45 +00:00
source.rs Fix *most* clippy lints (#15906) 2024-10-14 20:52:35 +00:00
wasm.rs Add core and alloc over std Lints (#15281) 2024-09-27 00:59:59 +00:00