Skip to content

Commit

Permalink
Fixed Default value list is not correct if contains a null value (T
Browse files Browse the repository at this point in the history
50040)

Engine will pass a null object if encountered a null value in the
default value list.
  • Loading branch information
gliu committed May 17, 2012
1 parent 7047b08 commit 77c3391
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1241,10 +1241,7 @@ else if ( result.getClass( ).isArray( ) )
{
Object value = evaluateExpression( expr, parameter
.getDataType( ) );
if ( value != null )
{
results.add( value );
}
results.add( value );
}
}
return results.toArray( );
Expand Down

0 comments on commit 77c3391

Please sign in to comment.