Generally I ignore coding style and just match the style of the file I'm editing, or the package I'm adding a class to etc. I noticed one bit that isn't usually done in Java, usually it's a C habit I think:
if ( null != mVariable ) instead of: if ( mVariable != null ) Is this a contentious one, or something to easily fix as and when it's seen? Hen
