Unnamed repository; edit this file 'description' to name the repository.
Merge #9927
9927: minor: Fix some clippy lints r=lnicola a=lnicola bors r+ Co-authored-by: LaurenČ›iu Nicola <[email protected]>
bors[bot] 2021-08-17
parent 978b140 · parent c9f448a · commit 067bae3
-rw-r--r--crates/hir/src/source_analyzer.rs4
-rw-r--r--crates/ide_assists/src/utils.rs2
2 files changed, 3 insertions, 3 deletions
diff --git a/crates/hir/src/source_analyzer.rs b/crates/hir/src/source_analyzer.rs
index cb6fd69bc6..b6ee5968fa 100644
--- a/crates/hir/src/source_analyzer.rs
+++ b/crates/hir/src/source_analyzer.rs
@@ -129,7 +129,7 @@ impl SourceAnalyzer {
.and_then(|adjusts| adjusts.last().map(|adjust| adjust.target.clone()));
let ty = infer[expr_id].clone();
let mk_ty = |ty| Type::new_with_resolver(db, &self.resolver, ty);
- mk_ty(ty.clone()).zip(Some(coerced.and_then(mk_ty)))
+ mk_ty(ty).zip(Some(coerced.and_then(mk_ty)))
}
pub(crate) fn type_of_pat(
@@ -145,7 +145,7 @@ impl SourceAnalyzer {
.and_then(|adjusts| adjusts.last().map(|adjust| adjust.target.clone()));
let ty = infer[pat_id].clone();
let mk_ty = |ty| Type::new_with_resolver(db, &self.resolver, ty);
- mk_ty(ty.clone()).zip(Some(coerced.and_then(mk_ty)))
+ mk_ty(ty).zip(Some(coerced.and_then(mk_ty)))
}
pub(crate) fn type_of_self(
diff --git a/crates/ide_assists/src/utils.rs b/crates/ide_assists/src/utils.rs
index 718fbeda8d..2431f5c4e7 100644
--- a/crates/ide_assists/src/utils.rs
+++ b/crates/ide_assists/src/utils.rs
@@ -464,7 +464,7 @@ pub(crate) fn add_method_to_adt(
}
pub fn useless_type_special_case(field_name: &str, field_ty: &String) -> Option<(String, String)> {
- if field_ty.to_string() == "String" {
+ if field_ty == "String" {
cov_mark::hit!(useless_type_special_case);
return Some(("&str".to_string(), format!("self.{}.as_str()", field_name)));
}