I don't think it should be changed, the only problems i've ever run into by not using { } is people saying it's "messy" and "hard to read" code.
Most statements aren't "strict" about the syntax you use at all:
if 1 { echo -a 1 }
if (1) echo -a 1
if (1) { echo -a 1 }