Hey, i try to trim each string item of an list in groovy
list.each() { it = it.trim(); }
But this only works within the closure, in the list th
@sepp2k i think that works in ruby
and this works in groovy list = list.collect() { it.trim(); }