We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97291bf commit e9532a2Copy full SHA for e9532a2
ObjectFiller/Filler.cs
@@ -131,9 +131,7 @@ private void FillInternal(object objectToFill)
131
}
132
133
var properties = objectToFill.GetType().GetProperties()
134
- .Where(x =>x.CanWrite || ContainsProperty(currentSetup.PropertiesWritePrivateSetter,x)
135
- && GetSetMethodOnDeclaringType(x) != null)
136
- .ToArray();
+ .Where(x => GetSetMethodOnDeclaringType(x) != null).ToArray();
137
138
if (properties.Length == 0) return;
139
0 commit comments