Skip to content

Commit

Permalink
MarimerLLC#3802 - replace null parameter with containingType
Browse files Browse the repository at this point in the history
  • Loading branch information
19bibo85 committed Apr 27, 2024
1 parent cfe179a commit fd4bf2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Csla/PropertyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public PropertyInfo(string name, string friendlyName, Type containingType, T def
/// </param>
/// <param name="relationship">Relationship with referenced object.</param>
public PropertyInfo(string name, string friendlyName, Type containingType, RelationshipTypes relationship)
: this(name, friendlyName, null, DataBindingFriendlyDefault(), relationship)
: this(name, friendlyName, containingType, DataBindingFriendlyDefault(), relationship)
{ }

/// <summary>
Expand Down

0 comments on commit fd4bf2a

Please sign in to comment.