Skip to content

Commit

Permalink
Remove unnecessary words in Javadoc (#501)
Browse files Browse the repository at this point in the history
Remove unnecessary words in Javadoc (#501)

Our Javadoc had some duplicated words, this commit fixes it.

PR: #501
  • Loading branch information
rweisleder committed Jun 15, 2021
1 parent 4c1462e commit ab5a0b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@
* {@code @ClearEnvironmentVariable} is a JUnit Jupiter extension to clear the value
* of a environment variable for a test execution.
*
* <p>The key of the environment variable to be cleared must be specified via
* {@link #key()}. After the annotated element has been executed, After the
* annotated method has been executed, the initial default value is restored.</p>
* <p>The key of the environment variable to be cleared must be specified via {@link #key()}.
* After the annotated element has been executed, the initial default value is restored.</p>
*
* <p>{@code ClearEnvironmentVariable} is repeatable and can be used on the method and
* on the class level. If a class is annotated, the configured variable will be
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@
* {@code @ClearSystemProperty} is a JUnit Jupiter extension to clear the value
* of a system property for a test execution.
*
* <p>The key of the system property to be cleared must be specified via
* {@link #key()}. After the annotated element has been executed, After the
* annotated method has been executed, the initial default value is restored.</p>
* <p>The key of the system property to be cleared must be specified via {@link #key()}.
* After the annotated element has been executed, the initial default value is restored.</p>
*
* <p>{@code ClearSystemProperty} is repeatable and can be used on the method and
* on the class level. If a class is annotated, the configured property will be
Expand Down

0 comments on commit ab5a0b2

Please sign in to comment.