Skip to content

Commit

Permalink
chore: Fix FieldCanBeMadeReadOnly
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Drenski <[email protected]>
  • Loading branch information
austindrenski authored Jan 17, 2024
1 parent a6062fe commit 3a30558
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 3a30558

Please sign in to comment.