Re: cvs commit:jakarta-jetspeed/src/java/org/apache/jetspeed/webservices/finance/stockmarket JetspeedStockQuoteService.java

2001-11-16 Thread Jon Stevens
on 11/16/01 5:51 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: +if (null == symbols || symbols.length 1) Just a style nit, most people write this as: symbols == null -jon -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

RE: cvs commit:jakarta-jetspeed/src/java/org/apache/jetspeed/webservices/finance/stockmarket JetspeedStockQuoteService.java

2001-11-16 Thread David Sean Taylor
Just a style nit, most people write this as: symbols == null I prefer the way Santiago wrote it, since you can sometimes make mistakes as in: +if (symbols = null || symbols.length 1) but the compiler won't allow this +if (null = symbols || symbols.length 1) David