src/main/java/org/apache/commons/ognl/ASTAnd.java [76:93]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                break;
            }
        }

        return result;
    }

    /* (non-Javadoc)
     * @see org.apache.commons.ognl.SimpleNode#setValueBody(org.apache.commons.ognl.OgnlContext, Object, Object)
     */
    protected void setValueBody( OgnlContext context, Object target, Object value )
        throws OgnlException
    {
        int last = children.length - 1;

        for ( int i = 0; i < last; ++i )
        {
            Object v = children[i].getValue( context, target );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/org/apache/commons/ognl/ASTOr.java [55:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                break;
            }
        }
        return result;
    }

    protected void setValueBody( OgnlContext context, Object target, Object value )
        throws OgnlException
    {
        int last = children.length - 1;
        for ( int i = 0; i < last; ++i )
        {
            Object v = children[i].getValue( context, target );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



