Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Tynamix.ObjectFiller/Filler.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="Filler.cs" company="Tynamix">
// 2015 by Roman K�hler
// © 2015 by Roman Köhler
// </copyright>
// <summary>
// The ObjectFiller.NET fills the public properties of your .NET object
Expand Down Expand Up @@ -389,7 +389,7 @@ private static bool TypeIsValidForObjectFiller(Type type, FillerSetupItem curren
|| (TypeIsList(type) && ListParamTypeIsValid(type, currentSetupItem))
|| (TypeIsDictionary(type) && DictionaryParamTypesAreValid(type, currentSetupItem))
|| TypeIsPoco(type)
|| TypeIsEnum(type)
|| TypeIsEnum(type) || TypeIsNullableEnum(type)
|| (type.IsInterface() && currentSetupItem.InterfaceToImplementation.ContainsKey(type)
|| currentSetupItem.InterfaceMocker != null);

Expand Down Expand Up @@ -1214,4 +1214,4 @@ private bool TypeIsArray(Type type)

#endregion
}
}
}