While not technically incorrect, the omission of curly braces can be misleading, and may lead to the introduction of errors during maintenance.
// the two statements seems to be attached to the if statement, but that is only true for the first one: if (condition) ExecuteSomething(); CheckSomething();
if (condition)
{
ExecuteSomething();
CheckSomething();
}