Always use a Brace
In C, C++, Java, and other languages, you use curley-braces — '\{' and '\}' — to indicate the start and the end of a block of code. However, the braces are optional if the block is only a single line. This is an option you should never use. Always use the brace, even if it is a single line.
Code Only What You Need
Only commit to code that which needs to committed to code. Only write what needs to be written. How hard can that be? You might be surprised, but there are developers out there that are so enamored with the code design that they implement entirely unnecessary things. The best of intentions is actually a waste when you implement something that is never actually used.