# 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.
|
||
|---|---|---|
| .. | ||
| macros | ||
| src | ||
| Cargo.toml | ||
| README.md | ||