Browse Source

Fix deprecation warnings in javadoc comments

See gh-24120
pull/24147/head
dreis2211 5 years ago committed by Andy Wilkinson
parent
commit
5ef6e09c64
  1. 2
      spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/cassandra/CassandraDriverReactiveHealthIndicator.java
  2. 5
      spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ConditionalOnEnabledResourceChain.java

2
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/cassandra/CassandraDriverReactiveHealthIndicator.java

@ -42,7 +42,7 @@ public class CassandraDriverReactiveHealthIndicator extends AbstractReactiveHeal @@ -42,7 +42,7 @@ public class CassandraDriverReactiveHealthIndicator extends AbstractReactiveHeal
private final CqlSession session;
/**
* Create a new {@link CassandraHealthIndicator} instance.
* Create a new {@link CassandraDriverReactiveHealthIndicator} instance.
* @param session the {@link CqlSession}.
*/
public CassandraDriverReactiveHealthIndicator(CqlSession session) {

5
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ConditionalOnEnabledResourceChain.java

@ -26,8 +26,9 @@ import org.springframework.context.annotation.Conditional; @@ -26,8 +26,9 @@ import org.springframework.context.annotation.Conditional;
/**
* {@link Conditional @Conditional} that checks whether or not the Spring resource
* handling chain is enabled. Matches if {@link ResourceProperties.Chain#getEnabled()} is
* {@code true} or if {@code webjars-locator-core} is on the classpath.
* handling chain is enabled. Matches if
* {@link WebProperties.Resources.Chain#getEnabled()} is {@code true} or if
* {@code webjars-locator-core} is on the classpath.
*
* @author Stephane Nicoll
* @since 1.3.0

Loading…
Cancel
Save