Remove exception print
This commit is contained in:
parent
ce2c7179a7
commit
79bea6b07b
1 changed files with 1 additions and 3 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue