Skip to content

Commit 655abbf

Browse files
committed
refactor: Change GetEventChannel method to not be virtual
Signed-off-by: André Silva <[email protected]>
1 parent a98c8c1 commit 655abbf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/OpenFeature/FeatureProvider.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public virtual Task ShutdownAsync(CancellationToken cancellationToken = default)
140140
/// Returns the event channel of the provider.
141141
/// </summary>
142142
/// <returns>The event channel of the provider</returns>
143-
public virtual Channel<object> GetEventChannel() => this.EventChannel;
143+
public Channel<object> GetEventChannel() => this.EventChannel;
144144

145145
/// <summary>
146146
/// Track a user action or application state, usually representing a business objective or outcome. The implementation of this method is optional.

0 commit comments

Comments
 (0)