|  f821768e62 # 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. | ||
|---|---|---|
| .. | ||
| embedded | ||
| file | ||
| android.rs | ||
| gated.rs | ||
| memory.rs | ||
| mod.rs | ||
| processor_gated.rs | ||
| source.rs | ||
| wasm.rs | ||