diff options
author | Alan Du <[email protected]> | 2018-10-20 17:29:25 +0100 |
---|---|---|
committer | Alan Du <[email protected]> | 2018-10-20 17:29:25 +0100 |
commit | 0857c22f263ff18418f939b57a7a2ab3f8aac2c1 (patch) | |
tree | f7a33b9fb8ddabe65c99f4db6a7d84c7a8463e16 /crates/ra_analysis/src/descriptors.rs | |
parent | 6dd3fa6a947a4442e46ac042ff955a7f17bd6a0f (diff) |
Revert "clippy: Fix new_ret_no_self"
This reverts commit 2ae9dfa812ccf18867373f77a106161378a6d91d.
Diffstat (limited to 'crates/ra_analysis/src/descriptors.rs')
-rw-r--r-- | crates/ra_analysis/src/descriptors.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_analysis/src/descriptors.rs b/crates/ra_analysis/src/descriptors.rs index dced99b07..3fca3e581 100644 --- a/crates/ra_analysis/src/descriptors.rs +++ b/crates/ra_analysis/src/descriptors.rs | |||
@@ -232,7 +232,7 @@ pub struct FnDescriptor { | |||
232 | } | 232 | } |
233 | 233 | ||
234 | impl FnDescriptor { | 234 | impl FnDescriptor { |
235 | pub fn new_opt(node: ast::FnDef) -> Option<Self> { | 235 | pub fn new(node: ast::FnDef) -> Option<Self> { |
236 | let name = node.name()?.text().to_string(); | 236 | let name = node.name()?.text().to_string(); |
237 | 237 | ||
238 | // Strip the body out for the label. | 238 | // Strip the body out for the label. |