You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactor: Remove confusing unused internal constructor in OtlpExporterOptions
The internal constructor was only ever called from the public constructor, and the public constructor itself is only used in tests.
This made it easy to assume the internal constructor was part of normal runtime scenarios, which could cause confusion.
(in normal runtime scenarios, only the factory method `OtlpExporterOptions.CreateOtlpExporterOptions` is used)
Removing it simplifies the code and avoids misleading readers.
0 commit comments