Hi !

Not sure if this is a bug or intended behaviour, given the following code :

Transformer t = TransformerUtils.invokerTransformer("toLowerCase");
List<String> abc = new ArrayList<String>();
abc.add("A");
List<String> tabc = ListUtils.transformedList(abc, t);
System.out.println("tabc:" + tabc);

This will return : tabc:[A] instead of tabc:[a].

A single transform works, String a = (String)t.transform("A"); will
return a lowercase "a".

Is it a bug ?

Thanks
laurent



-- 
<a href="http://in-pocket.blogspot.com";>http://in-pocket.blogspot.com
- Mobile world, technology and more</a>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to