Skip to content

Commit

Permalink
bugfix: snapshot repository is nullable
Browse files Browse the repository at this point in the history
not sure why the workflow didn't catch this on #44
  • Loading branch information
the-avid-engineer committed Jun 26, 2022
1 parent fe476a6 commit 18279ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public interface IProjectionRepository<TProjection> : IDisposableResource
/// <summary>
/// The backing snapshot repository.
/// </summary>
ISnapshotRepository<TProjection> SnapshotRepository { get; }
ISnapshotRepository<TProjection>? SnapshotRepository { get; }

/// <summary>
/// Returns the current state of a <typeparamref name="TProjection" />.
Expand Down

0 comments on commit 18279ee

Please sign in to comment.