-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove unused import. #20976
Remove unused import. #20976
Conversation
r? @pcwalton (rust_highfive has picked a reviewer for you, use r? to override) |
Was this giving a compilation warning and-or have you tested that this doesn't break anything? (worried about spooky trait import action at-a-distance) |
I saw a compilation warning when I did a full rebuild on libcollections, including tests and benchmarks. It looks like the unused import is only defined in the tests so I'm not sure there would be an impact elsewhere. But I'm a novice with the module system so I could be wrong. |
If the compiler said it was unused, I'm liable to trust it. |
Remove unused import. Reviewed-by: Gankro
Remove unused import. Reviewed-by: Gankro
Remove unused import. Reviewed-by: Gankro
Remove unused import. Reviewed-by: Gankro
The BorrowFrom trait was unused by the tests.
The BorrowFrom trait was unused by the tests.