We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef5866c commit 00b1764Copy full SHA for 00b1764
src/OpenFeature.Contrib.Hooks.Otel/OtelHook.cs
@@ -14,16 +14,7 @@ namespace OpenFeature.Contrib.Hooks.Otel
14
[Obsolete("This class is obsolete and will be removed in a future version. Please use TracingHook instead.")]
15
public class OtelHook : Hook
16
{
17
- private readonly TracingHook _tracingHook;
18
-
19
- /// <summary>
20
- /// Stub.
21
- /// </summary>
22
- [Obsolete("This class is obsolete and will be removed in a future version. Please use TracingHook instead.")]
23
- public OtelHook()
24
- {
25
- _tracingHook = new TracingHook();
26
- }
+ private readonly TracingHook _tracingHook = new TracingHook();
27
28
/// <summary>
29
/// After is executed after a feature flag has been evaluated.
0 commit comments