We now have 3 times the same code that like michiel said does not
provide the same behaviour.
Lets kick gomez for markting the class as deprecated (even if I am not
shure he did it) and revert tot the original code. We should add
documentation to the stringsplitter.


On Sun, 6 Feb 2005 22:20:24 +0100, Michiel Meeuwissen
<[EMAIL PROTECTED]> wrote:
> On Sun, 6 Feb 2005 21:42:30 +0100, Andre van Toly
> <[EMAIL PROTECTED]> wrote:
>  >              // logon = s.equals("") ? null : StringSplitter.split(s);
> > -            logon = s.equals("") ? null : Arrays.asList(s.split(","));
> > +            logon = s.equals("") ? null : Arrays.asList( 
> > s.replaceAll("\\s", "").split(",") );
> 
> I don't want to be a pain, but how about logon="john doe" here.
> that'll become a bit unexpectedly "johndoe".
> 
> So, more generally, I think this is no good either...
> 
> Michiel
> 
> --
> mihxil'  http://mihxil.komputilo.org/
> nl_NL eo_XX en_US
> _______________________________________________
> Cvs mailing list
> [EMAIL PROTECTED]
> http://lists.mmbase.org/mailman/listinfo/cvs
>
_______________________________________________
Developers mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/developers

Reply via email to