Fix typos in code and documentation
See gh-31734
This commit is contained in:
committed by
Phillip Webb
parent
4bcec6e0ee
commit
dbfc6bded4
@@ -80,14 +80,13 @@ public @interface ConditionalOnBean {
|
||||
|
||||
/**
|
||||
* The annotation type decorating a bean that should be checked. The condition matches
|
||||
* when all of the annotations specified are defined on beans in the
|
||||
* {@link BeanFactory}.
|
||||
* when all the annotations specified are defined on beans in the {@link BeanFactory}.
|
||||
* @return the class-level annotation types to check
|
||||
*/
|
||||
Class<? extends Annotation>[] annotation() default {};
|
||||
|
||||
/**
|
||||
* The names of beans to check. The condition matches when all of the bean names
|
||||
* The names of beans to check. The condition matches when all the bean names
|
||||
* specified are contained in the {@link BeanFactory}.
|
||||
* @return the names of beans to check
|
||||
*/
|
||||
|
||||
@@ -345,7 +345,7 @@ public class FlywayProperties {
|
||||
private String oracleKerberosCacheFile;
|
||||
|
||||
/**
|
||||
* Location of the Oracle Wallet, used to sign-in to the database automatically.
|
||||
* Location of the Oracle Wallet, used to sign in to the database automatically.
|
||||
* Requires Flyway Teams.
|
||||
*/
|
||||
private String oracleWalletLocation;
|
||||
|
||||
@@ -695,7 +695,7 @@ public class KafkaProperties {
|
||||
private String applicationId;
|
||||
|
||||
/**
|
||||
* Whether or not to auto-start the streams factory bean.
|
||||
* Whether to auto-start the streams factory bean.
|
||||
*/
|
||||
private boolean autoStartup = true;
|
||||
|
||||
|
||||
@@ -140,7 +140,7 @@ public abstract class JpaBaseConfiguration implements BeanFactoryAware {
|
||||
protected abstract Map<String, Object> getVendorProperties();
|
||||
|
||||
/**
|
||||
* Customize vendor properties before they are used. Allows for post processing (for
|
||||
* Customize vendor properties before they are used. Allows for post-processing (for
|
||||
* example to configure JTA specific settings).
|
||||
* @param vendorProperties the vendor properties to customize
|
||||
*/
|
||||
|
||||
@@ -25,10 +25,9 @@ import java.lang.annotation.Target;
|
||||
import org.springframework.context.annotation.Conditional;
|
||||
|
||||
/**
|
||||
* {@link Conditional @Conditional} that checks whether or not the Spring resource
|
||||
* handling chain is enabled. Matches if
|
||||
* {@link WebProperties.Resources.Chain#getEnabled()} is {@code true} or if
|
||||
* {@code webjars-locator-core} is on the classpath.
|
||||
* {@link Conditional @Conditional} that checks whether the Spring resource 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
|
||||
|
||||
@@ -27,8 +27,7 @@ import org.springframework.core.type.AnnotatedTypeMetadata;
|
||||
import org.springframework.util.ClassUtils;
|
||||
|
||||
/**
|
||||
* {@link Condition} that checks whether or not the Spring resource handling chain is
|
||||
* enabled.
|
||||
* {@link Condition} that checks whether the Spring resource handling chain is enabled.
|
||||
*
|
||||
* @author Stephane Nicoll
|
||||
* @author Phillip Webb
|
||||
|
||||
@@ -141,7 +141,7 @@ class Neo4jAutoConfigurationTests {
|
||||
|
||||
@Test
|
||||
@Deprecated
|
||||
void determineServerUriWithCustoUriShouldTakePrecedenceOverDeprecatedProperty() {
|
||||
void determineServerUriWithCustomUriShouldTakePrecedenceOverDeprecatedProperty() {
|
||||
URI customUri = URI.create("bolt://localhost:4242");
|
||||
URI anotherCustomURI = URI.create("bolt://localhost:2424");
|
||||
Neo4jProperties properties = new Neo4jProperties();
|
||||
|
||||
Reference in New Issue
Block a user