: The java coding standards do say : "Spaces after keywords but no spaces either before or after : parentheses in method calls" : : "if (a)" and "foo(a)"
that's fairly readable in general, but i have found that when dealing with complex conditionals, a little extra white space can make some things standout that thta might otherwise be overlooked... if (!(a||b)) vs if ( ! (a || b) ) while (foo(asdfasdfadsf) && bar(asdfasdfasdf) && (baz(asdfasdfadsf) || yak(23456))) { vs... while ( foo(asdfasdfadsf) && bar(asdfasdfasdf) && ( baz(asdfasdfadsf) || yak(23456) ) ) { -Hoss --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]