Menu

#159 Update Validate

[current]
closed
None
Task
2013-04-19
2013-02-14
No

public ValidationError Validate()
{
if (_validators == null) return null;
ValidationError result = null;
foreach (var validatable in _validators)

instead

public ValidationError Validate()
{
ValidationError result = null;
if (_validators == null) return null;
foreach (var validatable in _validators)

Discussion

  • Andrew Osintsev

    Andrew Osintsev - 2013-04-19
     

    Related

    Commit: [r751]

  • Andrew Osintsev

    Andrew Osintsev - 2013-04-19
    • status: open --> closed
     

Log in to post a comment.

MongoDB Logo MongoDB