xdbm-partition/src/main/java/org/apache/directory/server/xdbm/KeyTupleArrayCursor.java [225:240]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean next() throws LdapException, CursorException
    {
        checkNotClosed();
        if ( wrapped.next() )
        {
            returnedTuple.setKey( key );
            returnedTuple.setValue( wrapped.get() );
            valueAvailable = true;
            return true;
        }
        else
        {
            clearValue();
            return false;
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



core-avl/src/main/java/org/apache/directory/server/core/avltree/KeyTupleAvlCursor.java [221:237]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean next() throws LdapException, CursorException
    {
        checkNotClosed();

        if ( wrapped.next() )
        {
            returnedTuple.setKey( key );
            returnedTuple.setValue( wrapped.get() );
            valueAvailable = true;
            return true;
        }
        else
        {
            clearValue();
            return false;
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



