aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorJeremy Kolb <[email protected]>2019-02-06 12:22:16 +0000
committerJeremy Kolb <[email protected]>2019-02-06 12:22:16 +0000
commitd107926f8621dfc08010ffc5bf4a1ac6356c6c87 (patch)
tree4f82dda9b02ca33d154cefd46ced58596bc2065c /crates
parent852b08379473cc3ee06878c5aae809b63d76cbc3 (diff)
Remove stray dbg!
Diffstat (limited to 'crates')
-rw-r--r--crates/ra_ide_api_light/src/structure.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide_api_light/src/structure.rs b/crates/ra_ide_api_light/src/structure.rs
index dc3534498..330a3694c 100644
--- a/crates/ra_ide_api_light/src/structure.rs
+++ b/crates/ra_ide_api_light/src/structure.rs
@@ -62,7 +62,7 @@ fn structure_node(node: &SyntaxNode) -> Option<StructureNode> {
62 detail: Option<String>, 62 detail: Option<String>,
63 ) -> Option<StructureNode> { 63 ) -> Option<StructureNode> {
64 let name = node.name()?; 64 let name = node.name()?;
65 dbg!(name.text().to_string()); 65
66 Some(StructureNode { 66 Some(StructureNode {
67 parent: None, 67 parent: None,
68 label: name.text().to_string(), 68 label: name.text().to_string(),