From dfc2a348781a2c67f0e9f8d7174c2ef8201f5aed Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Sun, 15 Jan 2023 18:59:59 -0500 Subject: [PATCH] Remove rogue println --- src/visibility.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/visibility.rs b/src/visibility.rs index 2e82bad908..d224e3a809 100644 --- a/src/visibility.rs +++ b/src/visibility.rs @@ -162,7 +162,6 @@ fn method_visibility(stmt: &Stmt) -> Visibility { // Is this a setter or deleter? if decorator_list.iter().any(|expr| { let call_path = collect_call_path(expr); - print!("{call_path:?}"); if call_path.len() > 1 { call_path[0] == name } else {