Pattern: Missing braces for multi-line statement
Issue: -
Adding braces would improve readability and avoid possible errors.
Example of incorrect code:
val i = 1
if (i > 0)
println(i)
Example of correct code:
val x = if (condition) 5 else 4
Pattern: Missing braces for multi-line statement
Issue: -
Adding braces would improve readability and avoid possible errors.
Example of incorrect code:
val i = 1
if (i > 0)
println(i)
Example of correct code:
val x = if (condition) 5 else 4