diff options
author | Aleksey Kladov <[email protected]> | 2019-12-20 19:15:54 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-12-20 19:15:54 +0000 |
commit | f5947be0ea6eb909cbb63420c3304adedf470b26 (patch) | |
tree | 7f35a09860a991efbc1e3edf43ed3a2afb28e3b5 | |
parent | 02f9e04ee926241389f8c9e41fec9281de1e0af9 (diff) |
Simplify
-rw-r--r-- | crates/ra_hir_def/src/path.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir_def/src/path.rs b/crates/ra_hir_def/src/path.rs index 00325cd99..8e1294201 100644 --- a/crates/ra_hir_def/src/path.rs +++ b/crates/ra_hir_def/src/path.rs | |||
@@ -135,7 +135,7 @@ impl Path { | |||
135 | } | 135 | } |
136 | 136 | ||
137 | pub fn type_anchor(&self) -> Option<&TypeRef> { | 137 | pub fn type_anchor(&self) -> Option<&TypeRef> { |
138 | self.type_anchor.as_ref().map(|it| &**it) | 138 | self.type_anchor.as_deref() |
139 | } | 139 | } |
140 | 140 | ||
141 | pub fn segments(&self) -> PathSegments<'_> { | 141 | pub fn segments(&self) -> PathSegments<'_> { |