On Wed, 2006-03-08 at 21:32 -0500, Rahul Akolkar wrote:
> > s.trim();
> > - if (!s.startsWith("#")) {
> > + if ((s.length() > 0) && !s.startsWith("#")) {
> > return s;
> > }
> > }
> >
> <snip/>
>
> Ofcourse, Strings being immutable, you probably mean:
>
> s = s.trim();Doh! Thanks Rahul. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
