Remove rogue println

This commit is contained in:
Charlie Marsh
2023-01-15 18:59:59 -05:00
parent 7608087776
commit dfc2a34878

View File

@@ -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 {