One thing that was a bit (well, very) problematic to us last year was that we'd use different styles of code. One person may do this:
if (condition) {
//code
}
While another may do this:
if (condition)
{
//code
}
It is a pain to go through every single difference and say, oh, let's do it with/without the enter. So this year, we are planning to have a unanimous formatting preference. We are using Eclipse as our IDE for Java, so we are using a slightly changed version of the Eclipse [Built-In] formatting preference.
No comments:
Post a Comment