if( extractor.isNullValue( workingMemory, object1 ) || object2.getValue() == null ) {
return false;
}
final Date value1 = (Date) extractor.getValue( workingMemory, object1 );
final Object value2 = object2.getValue();
return value1.compareTo( DateUtils.getRightDate( value2, workingMemory.getDateFormats() ) ) <= 0;
}
public boolean evaluateCachedRight(InternalWorkingMemory workingMemory,
final VariableContextEntry context, final Object left) {
if( context.rightNull || context.declaration.getExtractor().isNullValue( workingMemory, left ) ) {