Added songs, new libraries and more code

This commit is contained in:
2015-05-29 12:47:25 +02:00
parent 4f4b10fd89
commit 7b21aa1e09
67 changed files with 388 additions and 75 deletions
+6 -6
View File
@@ -40,12 +40,12 @@ public class DirScanner {
{
for(File file2 : file.listFiles(csf))
{
try {
Song s = JSONReader.readSong(file2);
songs.add(s);
} catch (IOException e) {
e.printStackTrace();
}
try {
Song s = JSONReader.readSong(file2);
songs.add(s);
} catch (IOException e1) {
}
}
}