Guys,

I am seeing this:

if (condition) {
  // something
}
else {
  // something else
}

This is not the style we are using. Please don't do this or accept code
that looks like this. It should be

if (condition) {
  // something
} else {
  //something else
}

Thanks!

-Jay

Reply via email to