# 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.
|
||
|---|---|---|
| .. | ||
| iter | ||
| lib.rs | ||
| single_threaded_task_pool.rs | ||
| slice.rs | ||
| task_pool.rs | ||
| task.rs | ||
| thread_executor.rs | ||
| usages.rs | ||
| wasm_task.rs | ||