Bug 34267: IteratorChain.remove() in combination with FilterIterator

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@171347 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2005-05-22 17:27:34 +00:00
parent e6faf4b4a6
commit 2b68e826ec
3 changed files with 5 additions and 5 deletions

View File

@ -70,6 +70,7 @@ If this causes major headaches to anyone please contact commons-dev at jakarta.a
<li>TransformedMap.putAll - Now allows putAll of an empty map [34686]</li>
<li>AbstractHashedMap deserialization - Fix to prevent doubling of internal data array [34265]</li>
<li>Flat3Map.equals() - Fix to make flat mode comparison actually work [34917]</li>
<li>IteratorChain.remove() - Fix to avoid IllegalStateException when one of the underlying iterators is a FilterIterator [34267]</li>
</ul>
<center><h3>JAVADOC</h3></center>

View File

@ -1,5 +1,5 @@
/*
* Copyright 1999-2004 The Apache Software Foundation
* Copyright 1999-2005 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/*
* Copyright 2001-2004 The Apache Software Foundation
* Copyright 2001-2005 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -19,11 +19,10 @@ import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.NoSuchElementException;
import java.util.LinkedList;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.apache.commons.collections.PredicateUtils;
import org.apache.commons.collections.IteratorUtils;
import org.apache.commons.collections.Predicate;