Skip to content

Multiple FilterLists do not resynchronize on remove() #81

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
rolfl opened this issue May 12, 2012 · 1 comment
Closed

Multiple FilterLists do not resynchronize on remove() #81

rolfl opened this issue May 12, 2012 · 1 comment

Comments

@rolfl
Copy link
Collaborator

rolfl commented May 12, 2012

If you call remove() on one FilterList of an element's ContentList, then any other FilterLists should 're-sync' when they are next used, but this is not happening....

From the original report: http://markmail.org/message/bf4sf6g52gil3jva

I believe I've run into a problem that I don't think I had with JDOM 1.1.3 before I upgraded to 2.0.1.

I create a list of elements of a selected element using:

List<?> documentVersionElements = rootElement.getChildren("DocumentVersion", ns);

I see that I have 6 elements as expected in my list. None are null.

I am basically then trying to find a matching related element id in that list using something like:

            Element found = null;
            ListIterator<?> iter = documentVersionElements .listIterator();
            while( iter.hasNext() ) {
                Element checkElement = (Element)iter.next();
                EsfUUID evParentId = new EsfUUID(checkElement.getChildText("documentId", ns));
                if ( evParentId.equals(id) ) {
                    found = checkElement;
                    break;
                }
            }

Then, assuming I find it (found != null), I process it as expected. But I then want to remove the found element from the element list so it cannot be found again, so I use this:

documentVersionElements.remove(found);

Most of the time, this seems to work as expected, and the documentVersionElements list is then shorter by 1. But there are times when a list of 6 elements remains 6 elements after the remove (and remove() returns false), with 4 of them now null (not removed, but actually a null element), so in when I return to the listIterator() above and get my next() element, the element is null.

It's as if my Element objects are not unique in the list in terms of equals/hashCode as my elements should never be nulled out.

I am not sure why an element I find by iterating cannot then be removed. How could it fail to remove? Why would it change other list elements to NULL instead? Is this not a valid usage pattern?

Thanks,
David

@rolfl
Copy link
Collaborator Author

rolfl commented May 12, 2012

Fixed by 3839aad

@rolfl rolfl closed this as completed May 12, 2012
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant