Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Resolve nullable enum #141

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
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
}
}
}