private File getArtistImage(int id) {
   Artist artist = artistDao.getArtist(id);
   return artist == null || artist.getCoverArtPath() == null
       ? null
       : new File(artist.getCoverArtPath());
 }