Cleaned up Javadocs

This commit is contained in:
Erik C. Thauvin 2023-11-27 14:40:18 -08:00
parent 5167ce1c81
commit 26654821bf
11 changed files with 263 additions and 10 deletions

View file

@ -38,6 +38,7 @@ public final class BootUtils {
* Deletes the given directories.
*
* @param directories one or more directories to delete
* @throws FileUtilsErrorException if an error occurs
*/
public static void deleteDirectories(File... directories) throws FileUtilsErrorException {
for (var d : directories) {
@ -68,6 +69,7 @@ public final class BootUtils {
* Makes a directory for the given path, including any necessary but nonexistent parent directories.
*
* @param path the directory path
* @throws IOException if an error occurs
*/
public static void mkDirs(File path) throws IOException {
if (!path.exists() && !path.mkdirs()) {