(File f)
| 305 | } |
| 306 | |
| 307 | private static boolean checkMP3(File f) { |
| 308 | String name = f.getName(); |
| 309 | if(name.contains(".mp3")) |
| 310 | return true; |
| 311 | else |
| 312 | return false; |
| 313 | } |
| 314 | |
| 315 | private static void Pause() { |
| 316 | if (cdfile == -1 || enabled == false || playing == false) |
no test coverage detected