Skip to content
This repository has been archived by the owner on Dec 30, 2020. It is now read-only.

Commit

Permalink
Fix tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
lanwin committed Sep 28, 2010
1 parent 6397a0f commit 93c2f2e
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -44,6 +44,10 @@ public CollectionMemberMap(string memberName, Type memberReturnType, Func<object
public override object GetValue(object instance)
{
var elements = _collectionAdapter.GetElementsFromCollection(base.GetValue(instance));

if(elements == null)
return null;

var list = new ArrayList();

foreach (var element in elements)
Expand Down

0 comments on commit 93c2f2e

Please sign in to comment.