161162163164165166167168169170171
final Player player = _player; _player = null; if (player != null) { try { player.stop(); } catch (final Exception e) { } try { player.close(); } catch (final Exception e) {
165166167168169170171172173174175
return false; } if (player != null) { try { player.stop(); } catch (final Exception e) { throw new MediaActionException("Unable to unpause player: " + e); } }