Skip to content

Commit

Permalink
Drop binary serialization support. (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
Corniel authored Nov 19, 2024
1 parent 157c4db commit 8340ca8
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 33 deletions.
20 changes: 1 addition & 19 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,25 +1,7 @@
# custom additions
# custom additions
packages/
.nuget/

#################
## Eclipse
#################

*.pydevproject
.project
.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath

# External tool builders
.externalToolBuilders/

Expand Down
10 changes: 0 additions & 10 deletions src/Qowaiv.DomainModel.TestTools/AssertionFailed.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,4 @@ public AssertionFailed(string message) : base(message) { }
/// </param>
[ExcludeFromCodeCoverage/* Justification = "Required for inheritance only." */]
public AssertionFailed(string message, Exception innerException) : base(message, innerException) { }

/// <summary>Initializes a new instance of the <see cref="AssertionFailed"/> class.</summary>
/// <param name="info">
/// The object that holds the serialized object data.
/// </param>
/// <param name="context">
/// An object that describes the source or destination of the serialized data.
/// </param>
[ExcludeFromCodeCoverage/* Justification = "Required for inheritance only." */]
protected AssertionFailed(SerializationInfo info, StreamingContext context) : base(info, context) { }
}
4 changes: 0 additions & 4 deletions src/Qowaiv.DomainModel/Commands/UnresolvedCommandHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,6 @@ public UnresolvedCommandHandler(string message) : base(message) { }
public UnresolvedCommandHandler(string message, Exception innerException)
: base(message, innerException) { }

/// <summary>Initializes a new instance of the <see cref="UnresolvedCommandHandler"/> class.</summary>
protected UnresolvedCommandHandler(SerializationInfo info, StreamingContext context)
: base(info, context) { }

/// <summary>When the type could not be resolved.</summary>
[Pure]
internal static UnresolvedCommandHandler Type(Type type)
Expand Down

0 comments on commit 8340ca8

Please sign in to comment.