rawloader icon indicating copy to clipboard operation
rawloader copied to clipboard

fix: RawLoader unused qualification

Open nbw opened this issue 6 months ago • 0 comments

Fix compile issue. Running cargo build on the project has a unused_qualifications error since the RawLoader is already imported:

error: unnecessary qualification
  --> src/lib.rs:59:34
   |
59 |   static ref LOADER: RawLoader = decoders::RawLoader::new();
   |                                  ^^^^^^^^^^^^^^^^^^^^^^^^
   |
note: the lint level is defined here
  --> src/lib.rs:45:3
   |
45 |   unused_qualifications
   |   ^^^^^^^^^^^^^^^^^^^^^
help: remove the unnecessary path segments
   |
59 -   static ref LOADER: RawLoader = decoders::RawLoader::new();
59 +   static ref LOADER: RawLoader = RawLoader::new();
   |

Info

> rustc --version
rustc 1.87.0 (17067e9ac 2025-05-09)
 
> cargo --version
cargo 1.87.0 (99624be96 2025-05-06)

nbw avatar Jul 01 '25 13:07 nbw