SEC-293: Modified collection remove logic to use removeList.

This commit is contained in:
Ben Alex 2006-09-15 03:20:08 +00:00
parent e0108f3982
commit 03df6a90eb
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ class CollectionFilterer implements Filterer {
* @see org.acegisecurity.afterinvocation.Filterer#remove(java.lang.Object)
*/
public void remove(Object object) {
collectionIter.remove();
removeList.add(object);
}
}