Browse Source

Merge branch '3.5.x' into 4.0.x

Closes gh-49736
pull/49741/head
Phillip Webb 1 week ago
parent
commit
e8ec285fd5
  1. 2
      configuration-metadata/spring-boot-configuration-metadata-changelog-generator/src/main/java/org/springframework/boot/configurationmetadata/changelog/Difference.java
  2. 2
      core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/condition/OnPropertyCondition.java
  3. 2
      core/spring-boot-test/src/main/java/org/springframework/boot/test/context/SpringBootTest.java
  4. 2
      module/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/Operation.java
  5. 2
      module/spring-boot-flyway/src/main/java/org/springframework/boot/flyway/autoconfigure/FlywayDataSource.java
  6. 2
      module/spring-boot-liquibase/src/main/java/org/springframework/boot/liquibase/autoconfigure/LiquibaseDataSource.java

2
configuration-metadata/spring-boot-configuration-metadata-changelog-generator/src/main/java/org/springframework/boot/configurationmetadata/changelog/Difference.java

@ -20,7 +20,7 @@ import org.springframework.boot.configurationmetadata.ConfigurationMetadataPrope @@ -20,7 +20,7 @@ import org.springframework.boot.configurationmetadata.ConfigurationMetadataPrope
import org.springframework.boot.configurationmetadata.Deprecation.Level;
/**
* A difference the metadata.
* A difference in the metadata.
*
* @param type the type of the difference
* @param oldProperty the old property

2
core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/condition/OnPropertyCondition.java

@ -40,7 +40,7 @@ import org.springframework.util.ClassUtils; @@ -40,7 +40,7 @@ import org.springframework.util.ClassUtils;
import org.springframework.util.StringUtils;
/**
* {@link Condition} that checks if properties are defined in environment.
* {@link Condition} that checks if properties are defined in the environment.
*
* @author Maciej Walkowiak
* @author Phillip Webb

2
core/spring-boot-test/src/main/java/org/springframework/boot/test/context/SpringBootTest.java

@ -128,7 +128,7 @@ public @interface SpringBootTest { @@ -128,7 +128,7 @@ public @interface SpringBootTest {
UseMainMethod useMainMethod() default UseMainMethod.NEVER;
/**
* An enumeration web environment modes.
* An enumeration of web environment modes.
*/
enum WebEnvironment {

2
module/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/Operation.java

@ -37,7 +37,7 @@ public interface Operation { @@ -37,7 +37,7 @@ public interface Operation {
* Invoke the underlying operation using the given {@code context}. Results intended
* to be returned in the body of the response should additionally implement
* {@link OperationResponseBody}.
* @param context the context in to use when invoking the operation
* @param context the context to use when invoking the operation
* @return the result of the operation, may be {@code null}
*/
@Nullable Object invoke(InvocationContext context);

2
module/spring-boot-flyway/src/main/java/org/springframework/boot/flyway/autoconfigure/FlywayDataSource.java

@ -25,7 +25,7 @@ import java.lang.annotation.Target; @@ -25,7 +25,7 @@ import java.lang.annotation.Target;
import org.springframework.beans.factory.annotation.Qualifier;
/**
* Qualifier annotation for a DataSource to be injected in to Flyway. If used for a second
* Qualifier annotation for a DataSource to be injected into Flyway. If used for a second
* data source, the other (main) one would normally be marked as {@code @Primary}.
*
* @author Dave Syer

2
module/spring-boot-liquibase/src/main/java/org/springframework/boot/liquibase/autoconfigure/LiquibaseDataSource.java

@ -25,7 +25,7 @@ import java.lang.annotation.Target; @@ -25,7 +25,7 @@ import java.lang.annotation.Target;
import org.springframework.beans.factory.annotation.Qualifier;
/**
* Qualifier annotation for a DataSource to be injected in to Liquibase. If used for a
* Qualifier annotation for a DataSource to be injected into Liquibase. If used for a
* second data source, the other (main) one would normally be marked as {@code @Primary}.
*
* @author Eddú Meléndez

Loading…
Cancel
Save