Hi,

> Are we also going to bring up the debate about cuddling v. not
> cuddling? 
You just did :-)

I assume you mean this:

if (condition) {
        doSomething();
} else {
        doSomethingElse();
}

vs 

if (condition)
{
        doSomething();
}
else
{
        doSomethingElse();
}

Currently the SDK code doesn't cuddle brackets statements so that would be the 
way to go for now.

Thanks,
Justin

PS It's not my preferred style

Reply via email to