xdbm-partition/src/main/java/org/apache/directory/server/xdbm/KeyTupleArrayCursor.java [204:219]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean previous() throws LdapException, CursorException
    {
        checkNotClosed();
        if ( wrapped.previous() )
        {
            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 [200:215]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public boolean previous() throws LdapException, CursorException
    {
        checkNotClosed();
        if ( wrapped.previous() )
        {
            returnedTuple.setKey( key );
            returnedTuple.setValue( wrapped.get() );
            valueAvailable = true;
            return true;
        }
        else
        {
            clearValue();
            return false;
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



