From 8e72cabd763c8f6cfba63b9aaf9502ca15a3092f Mon Sep 17 00:00:00 2001 From: Clyhtsuriva Date: Sat, 26 Jun 2021 21:01:16 +0200 Subject: Moved PathValidation to the util package --- .../java/musichub/business/PathValidation.java | 39 ---------------------- 1 file changed, 39 deletions(-) delete mode 100644 src/main/java/musichub/business/PathValidation.java (limited to 'src/main/java/musichub/business') diff --git a/src/main/java/musichub/business/PathValidation.java b/src/main/java/musichub/business/PathValidation.java deleted file mode 100644 index b0281ba..0000000 --- a/src/main/java/musichub/business/PathValidation.java +++ /dev/null @@ -1,39 +0,0 @@ -package musichub.business; - -import java.nio.file.Files; -import java.nio.file.Path; -import java.nio.file.Paths; - -/** - * Class offering a path validation method. - * - * @author Aimeric ADJUTOR - * @version 1.0 - */ - -public final class PathValidation { - - /** - * Method that just throws an AssertionError if the class is called - * - * @throws AssertionError you can't instantiate this class - * @author Aimeric ADJUTOR - */ - - public PathValidation() { - throw new AssertionError("You just can't instantiate this class."); - } - - /** - * Method that checks the validity of a given path - * - * @param inputPath the path given by the user - * @return a boolean - */ - - public static boolean isPathValid(String inputPath) { - Path path = Paths.get(inputPath); - return Files.exists(path); - } - -} \ No newline at end of file -- cgit v1.2.3