aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/musichub/business
diff options
context:
space:
mode:
authorClyhtsuriva <61652557+clyhtsuriva@users.noreply.github.com>2021-06-26 22:24:05 +0000
committerGitHub <noreply@github.com>2021-06-26 22:24:05 +0000
commit18359e9e2892a332f283476bc3ae887308f51cec (patch)
tree79de50772e18722f57813b234dd541b1c701aa01 /src/main/java/musichub/business
parent5dc7dea3ef53a385442c6bfd59054faa4b1d73d9 (diff)
parent67ed18fe86ddfabe5f6c6c270273597799722a72 (diff)
Merge pull request #8 from Said-Belhadj/feature/STZ-0009
Feature/stz 0009
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