Browse Source

Make PropagationType a public type

The PropagationType enum is returned from public methods so
should be public itself.

See gh-39265
pull/39395/head
Vaibhav Jaiswal 2 years ago committed by Phillip Webb
parent
commit
16c0f035a9
  1. 2
      spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/tracing/TracingProperties.java

2
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/tracing/TracingProperties.java

@ -224,7 +224,7 @@ public class TracingProperties { @@ -224,7 +224,7 @@ public class TracingProperties {
/**
* Supported propagation types. The declared order of the values matter.
*/
enum PropagationType {
public enum PropagationType {
/**
* <a href="https://www.w3.org/TR/trace-context/">W3C</a> propagation.

Loading…
Cancel
Save