vfmt: remove tracing println for match branches

pull/8468/head
Delyan Angelov 2021-01-31 11:05:49 +02:00
parent 978359a6fc
commit 5746ac4dd4
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 1 additions and 1 deletions

View File

@ -1788,7 +1788,7 @@ pub fn (mut f Fmt) match_expr(it ast.MatchExpr) {
mut single_line := true mut single_line := true
for branch in it.branches { for branch in it.branches {
if branch.stmts.len > 1 || branch.pos.line_nr < branch.pos.last_line { if branch.stmts.len > 1 || branch.pos.line_nr < branch.pos.last_line {
println(branch) // println(branch)
single_line = false single_line = false
break break
} }