mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
fmt: remove redundant parenthesis in the complex infix expr (#17873)
This commit is contained in:
@@ -260,7 +260,7 @@ fn (mut context Context) print_status() {
|
||||
if context.is_silent {
|
||||
return
|
||||
}
|
||||
if (context.cut_index == 1) && (context.max_index == 0) {
|
||||
if context.cut_index == 1 && context.max_index == 0 {
|
||||
return
|
||||
}
|
||||
msg := '> ${context.path:-30} | index: ${context.cut_index:5}/${context.max_index - 1:5}'
|
||||
|
||||
Reference in New Issue
Block a user