Skip to content

Commit

Permalink
chore: Fix FieldCanBeMadeReadOnly (#183)
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Drenski <austin@austindrenski.io>
  • Loading branch information
austindrenski committed Jan 18, 2024
1 parent 1efe09d commit 18a092a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OpenFeature/FeatureProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public abstract class FeatureProvider
/// <summary>
/// The event channel of the provider.
/// </summary>
protected Channel<object> EventChannel = Channel.CreateBounded<object>(1);
protected readonly Channel<object> EventChannel = Channel.CreateBounded<object>(1);

/// <summary>
/// Metadata describing the provider.
Expand Down

0 comments on commit 18a092a

Please sign in to comment.