Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/dev' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeuchler committed Jul 5, 2021
2 parents 13b811d + e0ec447 commit c67116a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.0
3.1.1
4 changes: 2 additions & 2 deletions src/Moryx/Serialization/EntrySerializeSerialization.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace Moryx.Serialization
/// </summary>
public class EntrySerializeSerialization : DefaultSerialization
{
private static string[] _basePropertyFilter;
private readonly string[] _basePropertyFilter;

/// <summary>
/// Instance of the default <see cref="EntrySerializeSerialization"/>
Expand Down Expand Up @@ -90,7 +90,7 @@ public override IEnumerable<MappedProperty> WriteFilter(Type sourceType, IEnumer
/// <summary>
/// Property filter for properties of the base class
/// </summary>
private static bool BasePropertyFilter(PropertyInfo prop)
private bool BasePropertyFilter(PropertyInfo prop)
{
if (_basePropertyFilter.Length == 0)
return true;
Expand Down

0 comments on commit c67116a

Please sign in to comment.