Remove exception print

This commit is contained in:
Harry Zhou 2022-07-03 22:49:53 -05:00
parent ce2c7179a7
commit 79bea6b07b

View file

@ -66,9 +66,7 @@ public class SongLoaderThread extends Thread{
try {
song = NBSConverter.getSongFromBytes(bytes, name);
}
catch (Exception e) {
e.printStackTrace();
}
catch (Exception e) {}
}
if (song == null) {