Cleanup tests

This commit is contained in:
Erik C. Thauvin 2025-05-03 19:00:34 -07:00
parent c8c38b5612
commit 9d8ab4a7bc
Signed by: erik
GPG key ID: 776702A6A2DA330E
3 changed files with 311 additions and 235 deletions

View file

@ -455,6 +455,7 @@ public class CheckstyleOperation extends AbstractProcessOperation<CheckstyleOper
* @return the checkstyle operation
* @see #sourceDir(Collection)
*/
@SuppressWarnings("UnusedReturnValue")
public CheckstyleOperation sourceDir(File... dir) {
return sourceDir(List.of(dir));
}
@ -466,6 +467,7 @@ public class CheckstyleOperation extends AbstractProcessOperation<CheckstyleOper
* @return the checkstyle operation
* @see #sourceDirPaths(Collection)
*/
@SuppressWarnings("UnusedReturnValue")
public CheckstyleOperation sourceDir(Path... dir) {
return sourceDirPaths(List.of(dir));
}