From 9538521c7d8cdbaec87d42403bc3c313dd801dd2 Mon Sep 17 00:00:00 2001 From: Clyhtsuriva Date: Sun, 6 Jun 2021 13:40:05 +0200 Subject: Adding LICENSE and README.md --- README.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 README.md (limited to 'README.md') diff --git a/README.md b/README.md new file mode 100644 index 0000000..0f54923 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# spoteezer \ No newline at end of file -- cgit v1.2.3 From 48d56d9db8fe93f1e1799674fefabdfc677d2eb7 Mon Sep 17 00:00:00 2001 From: Clyhtsuriva Date: Tue, 8 Jun 2021 20:52:31 +0200 Subject: Update of README.md and MusicHub.java --- README.md | 16 +++++++++++++++- src/musichub/business/MusicHub.java | 6 +++--- 2 files changed, 18 insertions(+), 4 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 0f54923..3c81196 100644 --- a/README.md +++ b/README.md @@ -1 +1,15 @@ -# spoteezer \ No newline at end of file +# Spoteezer + +## The Team + +This project was done by a team of 3 amazing people: + ++ Aimeric ADJUTOR ++ Said BELHADJ ++ Anthony BOULANT + +## The project + +This project is being done as part of our sixth semester at the engineering school, the ESIEA. + +## W.I.P. ... \ No newline at end of file diff --git a/src/musichub/business/MusicHub.java b/src/musichub/business/MusicHub.java index 4eb09c3..38e2214 100644 --- a/src/musichub/business/MusicHub.java +++ b/src/musichub/business/MusicHub.java @@ -28,9 +28,9 @@ class SortByAuthor implements Comparator { public class MusicHub { public static final String DIR = System.getProperty("user.dir"); - public static final String ALBUMS_FILE_PATH = DIR + "\\files\\albums.xml"; - public static final String PLAYLISTS_FILE_PATH = DIR + "\\files\\playlists.xml"; - public static final String ELEMENTS_FILE_PATH = DIR + "\\files\\elements.xml"; + public static final String ALBUMS_FILE_PATH = DIR + "/files/albums.xml"; + public static final String PLAYLISTS_FILE_PATH = DIR + "/files/playlists.xml"; + public static final String ELEMENTS_FILE_PATH = DIR + "/files/elements.xml"; private final List albums; private final List playlists; private final List elements; -- cgit v1.2.3