Commit 3e35a661 authored by dreis2211's avatar dreis2211 Committed by Stephane Nicoll

Fix duplicated words

See gh-18004
parent 4f696441
...@@ -70,7 +70,7 @@ public class FlywayProperties { ...@@ -70,7 +70,7 @@ public class FlywayProperties {
private List<String> schemas = new ArrayList<>(); private List<String> 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"; private String table = "flyway_schema_history";
......
...@@ -51,19 +51,19 @@ public interface CapturedOutput extends CharSequence { ...@@ -51,19 +51,19 @@ public interface CapturedOutput extends CharSequence {
/** /**
* Return all content (both {@link System#out System.out} and {@link System#err * 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 * @return all captured output
*/ */
String getAll(); 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 * @return {@link System#out System.out} captured output
*/ */
String getOut(); 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 * @return {@link System#err System.err} captured output
*/ */
String getErr(); String getErr();
......
...@@ -92,7 +92,7 @@ class OutputCapture implements CapturedOutput { ...@@ -92,7 +92,7 @@ class OutputCapture implements CapturedOutput {
/** /**
* Return all content (both {@link System#out System.out} and {@link System#err * 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 * @return all captured output
*/ */
@Override @Override
...@@ -101,7 +101,7 @@ class OutputCapture implements CapturedOutput { ...@@ -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 * @return {@link System#out System.out} captured output
*/ */
@Override @Override
...@@ -110,7 +110,7 @@ class OutputCapture implements CapturedOutput { ...@@ -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 * @return {@link System#err System.err} captured output
*/ */
@Override @Override
......
...@@ -44,19 +44,19 @@ public interface CapturedOutput extends CharSequence { ...@@ -44,19 +44,19 @@ public interface CapturedOutput extends CharSequence {
/** /**
* Return all content (both {@link System#out System.out} and {@link System#err * 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 * @return all captured output
*/ */
String getAll(); 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 * @return {@link System#out System.out} captured output
*/ */
String getOut(); 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 * @return {@link System#err System.err} captured output
*/ */
String getErr(); String getErr();
......
...@@ -77,7 +77,7 @@ class OutputCapture implements CapturedOutput { ...@@ -77,7 +77,7 @@ class OutputCapture implements CapturedOutput {
/** /**
* Return all content (both {@link System#out System.out} and {@link System#err * 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 * @return all captured output
*/ */
@Override @Override
...@@ -86,7 +86,7 @@ class OutputCapture implements CapturedOutput { ...@@ -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 * @return {@link System#out System.out} captured output
*/ */
@Override @Override
...@@ -95,7 +95,7 @@ class OutputCapture implements CapturedOutput { ...@@ -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 * @return {@link System#err System.err} captured output
*/ */
@Override @Override
......
...@@ -100,7 +100,7 @@ public class NettyReactiveWebServerFactory extends AbstractReactiveWebServerFact ...@@ -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. * handler for the Spring application.
* @param routeProviders the route providers to add * @param routeProviders the route providers to add
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment