Skip to content

Commit

Permalink
Fix redundant Javadoc phrasing
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Feb 12, 2025
1 parent 0df4a41 commit fbe3340
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/org/apache/commons/compress/AbstractTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ protected void checkArchiveContent(final ArchiveInputStream<?> inputStream, fina
* @param inputStream
* @param expected list of expected entries or {@code null} if no check of names desired
* @param cleanUp Cleans up resources if true
* @return returns the created result file if cleanUp = false, or null otherwise
* @return the created result file if cleanUp = false, or null otherwise
* @throws Exception
*/
protected File checkArchiveContent(final ArchiveInputStream<?> inputStream, final List<String> expected, final boolean cleanUp) throws Exception {
Expand Down Expand Up @@ -312,7 +312,7 @@ public Path createTempDirectory(final String prefix) throws IOException {
* Override this method to change what is to be compared in the List. For example, size + name instead of just name.
*
* @param entry
* @return returns the entry name
* @return the entry name
*/
protected String getExpectedString(final ArchiveEntry entry) {
return entry.getName();
Expand Down

0 comments on commit fbe3340

Please sign in to comment.