diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/flyway/FlywayProperties.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/flyway/FlywayProperties.java index 0ece0e045e..ac9e130629 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/flyway/FlywayProperties.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/flyway/FlywayProperties.java @@ -70,7 +70,7 @@ public class FlywayProperties { private List schemas = new ArrayList<>(); /** - * Name of the schema schema history table that will be used by Flyway. + * Name of the schema history table that will be used by Flyway. */ private String table = "flyway_schema_history"; diff --git a/spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/system/CapturedOutput.java b/spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/system/CapturedOutput.java index fa7e265371..ae1286cd4a 100644 --- a/spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/system/CapturedOutput.java +++ b/spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/system/CapturedOutput.java @@ -51,19 +51,19 @@ public interface CapturedOutput extends CharSequence { /** * Return all content (both {@link System#out System.out} and {@link System#err - * System.err}) in the order that it was was captured. + * System.err}) in the order that it was captured. * @return all captured output */ String getAll(); /** - * Return {@link System#out System.out} content in the order that it was was captured. + * Return {@link System#out System.out} content in the order that it was captured. * @return {@link System#out System.out} captured output */ String getOut(); /** - * Return {@link System#err System.err} content in the order that it was was captured. + * Return {@link System#err System.err} content in the order that it was captured. * @return {@link System#err System.err} captured output */ String getErr(); diff --git a/spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/system/OutputCapture.java b/spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/system/OutputCapture.java index d9a5b002e4..a1a6e65918 100644 --- a/spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/system/OutputCapture.java +++ b/spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/system/OutputCapture.java @@ -92,7 +92,7 @@ class OutputCapture implements CapturedOutput { /** * Return all content (both {@link System#out System.out} and {@link System#err - * System.err}) in the order that it was was captured. + * System.err}) in the order that it was captured. * @return all captured output */ @Override @@ -101,7 +101,7 @@ class OutputCapture implements CapturedOutput { } /** - * Return {@link System#out System.out} content in the order that it was was captured. + * Return {@link System#out System.out} content in the order that it was captured. * @return {@link System#out System.out} captured output */ @Override @@ -110,7 +110,7 @@ class OutputCapture implements CapturedOutput { } /** - * Return {@link System#err System.err} content in the order that it was was captured. + * Return {@link System#err System.err} content in the order that it was captured. * @return {@link System#err System.err} captured output */ @Override diff --git a/spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/system/CapturedOutput.java b/spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/system/CapturedOutput.java index 974bce786b..77925cca61 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/system/CapturedOutput.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/system/CapturedOutput.java @@ -44,19 +44,19 @@ public interface CapturedOutput extends CharSequence { /** * Return all content (both {@link System#out System.out} and {@link System#err - * System.err}) in the order that it was was captured. + * System.err}) in the order that it was captured. * @return all captured output */ String getAll(); /** - * Return {@link System#out System.out} content in the order that it was was captured. + * Return {@link System#out System.out} content in the order that it was captured. * @return {@link System#out System.out} captured output */ String getOut(); /** - * Return {@link System#err System.err} content in the order that it was was captured. + * Return {@link System#err System.err} content in the order that it was captured. * @return {@link System#err System.err} captured output */ String getErr(); diff --git a/spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/system/OutputCapture.java b/spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/system/OutputCapture.java index e2e7581219..9c8d16b7da 100644 --- a/spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/system/OutputCapture.java +++ b/spring-boot-project/spring-boot-tools/spring-boot-test-support/src/main/java/org/springframework/boot/testsupport/system/OutputCapture.java @@ -77,7 +77,7 @@ class OutputCapture implements CapturedOutput { /** * Return all content (both {@link System#out System.out} and {@link System#err - * System.err}) in the order that it was was captured. + * System.err}) in the order that it was captured. * @return all captured output */ @Override @@ -86,7 +86,7 @@ class OutputCapture implements CapturedOutput { } /** - * Return {@link System#out System.out} content in the order that it was was captured. + * Return {@link System#out System.out} content in the order that it was captured. * @return {@link System#out System.out} captured output */ @Override @@ -95,7 +95,7 @@ class OutputCapture implements CapturedOutput { } /** - * Return {@link System#err System.err} content in the order that it was was captured. + * Return {@link System#err System.err} content in the order that it was captured. * @return {@link System#err System.err} captured output */ @Override diff --git a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/netty/NettyReactiveWebServerFactory.java b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/netty/NettyReactiveWebServerFactory.java index a4a8bb3d37..023762fb00 100644 --- a/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/netty/NettyReactiveWebServerFactory.java +++ b/spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/netty/NettyReactiveWebServerFactory.java @@ -100,7 +100,7 @@ public class NettyReactiveWebServerFactory extends AbstractReactiveWebServerFact } /** - * Add {@link NettyRouteProvider}s that should be applied, in order, before the the + * Add {@link NettyRouteProvider}s that should be applied, in order, before the * handler for the Spring application. * @param routeProviders the route providers to add */