1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vfmt: remove tracing println for match branches

This commit is contained in:
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

View File

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