aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/musichub/business
diff options
context:
space:
mode:
authorSaid Belhadj <71043286+Said-Belhadj@users.noreply.github.com>2021-06-27 15:43:57 +0200
committerGitHub <noreply@github.com>2021-06-27 15:43:57 +0200
commit703425d435ac7d0b6a3337f5730199fbaad82ff1 (patch)
tree63c26d58a831eec503940ad616533f35b3b3ccfe /src/main/java/musichub/business
parent6c977eff192830096d4d5cde27d31bfd21d16b7e (diff)
parente13eea333d7af2786dbbbb5ed60cea4593d5ee12 (diff)
Merge branch 'develop' into feature/STZ-0008
Diffstat (limited to 'src/main/java/musichub/business')
-rw-r--r--src/main/java/musichub/business/PathValidation.java39
1 files changed, 0 insertions, 39 deletions
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