Fix duplicated words
See gh-18004
This commit is contained in:
committed by
Stephane Nicoll
parent
4f696441cf
commit
3e35a6616c
@@ -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();
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user