https://bz.apache.org/bugzilla/show_bug.cgi?id=65916

--- Comment #14 from moimoi.chk <moimoi....@gmail.com> ---
sorry miss 

public Iterator<Cell> cellIterator() {
        Iterator<Cell> originalIterator = (Iterator<Cell>)(Iterator<? extends
Cell>)_cells.values().iterator();

        return new Iterator<Cell>() {
            Cell lastNext = null;

            @Override
            public boolean hasNext() {
                return originalIterator.hasNext();
            }

            @Override
            public Cell next() {
                return lastNext = originalIterator.next();
            }

            @Override
            public void remove() {
                removeCellWithoutRemoveFromList(lastNext);
                originalIterator.remove();
            }
        };
    }

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org

Reply via email to