bevy/crates/bevy_tasks/src
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
..
iter Add core and alloc over std Lints (#15281) 2024-09-27 00:59:59 +00:00
lib.rs Add core and alloc over std Lints (#15281) 2024-09-27 00:59:59 +00:00
single_threaded_task_pool.rs Add core and alloc over std Lints (#15281) 2024-09-27 00:59:59 +00:00
slice.rs Add core and alloc over std Lints (#15281) 2024-09-27 00:59:59 +00:00
task.rs Add core and alloc over std Lints (#15281) 2024-09-27 00:59:59 +00:00
task_pool.rs Add core and alloc over std Lints (#15281) 2024-09-27 00:59:59 +00:00
thread_executor.rs Add core and alloc over std Lints (#15281) 2024-09-27 00:59:59 +00:00
usages.rs Add core and alloc over std Lints (#15281) 2024-09-27 00:59:59 +00:00
wasm_task.rs Resolve unused_qualifications warnings (#16001) 2024-10-19 16:59:58 +00:00