Skip to content

Commit fcdc4df

Browse files
committed
format
1 parent a348fed commit fcdc4df

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

instrumentation/spring/spring-boot-autoconfigure/src/main/javaSpring3/io/opentelemetry/instrumentation/spring/autoconfigure/internal/instrumentation/runtimemetrics/RuntimeMetricsBeanRegistrationExcludeFilter.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
public class RuntimeMetricsBeanRegistrationExcludeFilter implements BeanRegistrationExcludeFilter {
1818
@Override
1919
public boolean isExcludedFromAotProcessing(RegisteredBean registeredBean) {
20-
// The JFR-based runtime metric code is exlcuded from the Spring AOT processing step. So, this code is not included in a Spring native image application.
20+
// The JFR-based runtime metric code is excluded from the Spring AOT processing step.
21+
// That way, this code is not included in a Spring native image application.
2122

2223
return "io.opentelemetry.instrumentation.spring.autoconfigure.internal.instrumentation.runtimemetrics.Java17RuntimeMetricsProvider"
2324
.equals(registeredBean.getBeanName());

0 commit comments

Comments
 (0)