diff options
author | Edwin Cheng <[email protected]> | 2020-05-10 11:03:44 +0100 |
---|---|---|
committer | Edwin Cheng <[email protected]> | 2020-05-10 11:03:44 +0100 |
commit | a3375c1a88848195a7fd83d29acdab4029ca1459 (patch) | |
tree | bc1a053e62b2bf3681fbc734f1c24b43a6916ac1 /crates/ra_ide/src | |
parent | 9405116d51b2d078557873fafbf3d91f19d332a7 (diff) |
Remove dbg
Diffstat (limited to 'crates/ra_ide/src')
-rw-r--r-- | crates/ra_ide/src/display/function_signature.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/ra_ide/src/display/function_signature.rs b/crates/ra_ide/src/display/function_signature.rs index 3d3147254..9572debd8 100644 --- a/crates/ra_ide/src/display/function_signature.rs +++ b/crates/ra_ide/src/display/function_signature.rs | |||
@@ -129,7 +129,6 @@ impl FunctionSignature { | |||
129 | for field in variant.fields(db).into_iter() { | 129 | for field in variant.fields(db).into_iter() { |
130 | let ty = field.signature_ty(db); | 130 | let ty = field.signature_ty(db); |
131 | let raw_param = format!("{}", ty.display(db)); | 131 | let raw_param = format!("{}", ty.display(db)); |
132 | dbg!(&raw_param); | ||
133 | if let Some(param_type) = raw_param.split(':').nth(1).and_then(|it| it.get(1..)) { | 132 | if let Some(param_type) = raw_param.split(':').nth(1).and_then(|it| it.get(1..)) { |
134 | parameter_types.push(param_type.to_string()); | 133 | parameter_types.push(param_type.to_string()); |
135 | } else { | 134 | } else { |