Skip to content

Commit

Permalink
Remove sealed class from 1) internal types, 2) types which are an…
Browse files Browse the repository at this point in the history
…yway reference by interface type (#31)
  • Loading branch information
wdolek authored Aug 30, 2020
1 parent 3d24b09 commit ff9729a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
namespace W4k.AspNetCore.Correlator.Context
{
/// <summary>
/// Default implementation of correlation context container.
/// </summary>
internal sealed partial class CorrelationContextContainer
internal partial class CorrelationContextContainer
{
internal class CorrelationScope : ICorrelationScope
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@

namespace W4k.AspNetCore.Correlator.Context
{
/// <summary>
/// Default implementation of correlation context container.
/// </summary>
internal sealed partial class CorrelationContextContainer
internal partial class CorrelationContextContainer
: ICorrelationScopeFactory, ICorrelationContextAccessor, IDisposable
{
private static readonly AsyncLocal<CorrelationContext?> LocalContext = new AsyncLocal<CorrelationContext?>();
Expand Down

0 comments on commit ff9729a

Please sign in to comment.