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 { try {
song = NBSConverter.getSongFromBytes(bytes, name); song = NBSConverter.getSongFromBytes(bytes, name);
} }
catch (Exception e) { catch (Exception e) {}
e.printStackTrace();
}
} }
if (song == null) { if (song == null) {