ICU-4180 modify the right set!

X-SVN-Rev: 16680
This commit is contained in:
Doug Felt 2004-10-29 22:23:43 +00:00
parent 9a5baf62f7
commit 72eaa1feca

View file

@ -2374,7 +2374,7 @@ public class UnicodeSet extends UnicodeFilter {
public void addAll(Collection source) {
Iterator it = source.iterator();
while (it.hasNext()) {
source.add(it.next().toString());
add(it.next().toString());
}
}