Mark public classes as final in extensions/aws (#2854)
Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
This commit is contained in:
parent
509a2eee01
commit
41090fdd60
|
|
@ -12,7 +12,7 @@ import io.opentelemetry.sdk.autoconfigure.spi.ConfigurablePropagatorProvider;
|
||||||
* A {@link ConfigurablePropagatorProvider} which allows enabling the {@link AwsXrayPropagator} with
|
* A {@link ConfigurablePropagatorProvider} which allows enabling the {@link AwsXrayPropagator} with
|
||||||
* the propagator name {@code xray}.
|
* the propagator name {@code xray}.
|
||||||
*/
|
*/
|
||||||
public class AwsConfigurablePropagator implements ConfigurablePropagatorProvider {
|
public final class AwsConfigurablePropagator implements ConfigurablePropagatorProvider {
|
||||||
@Override
|
@Override
|
||||||
public TextMapPropagator getPropagator() {
|
public TextMapPropagator getPropagator() {
|
||||||
return AwsXrayPropagator.getInstance();
|
return AwsXrayPropagator.getInstance();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue