diff options
author | Max Kellermann <max@musicpd.org> | 2018-01-03 17:17:22 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-01-03 17:17:22 +0100 |
commit | 859e59262e32167a75fe206faa31d5509496864b (patch) | |
tree | 1d0f80fbcc2a28b825b39ea63f94711e9bc613c4 /src/player | |
parent | ec113420f150d891cb91fd2f742d4795af2763e8 (diff) |
player/Thread: remove unnecessary "continue" keywords
Diffstat (limited to 'src/player')
-rw-r--r-- | src/player/Thread.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/player/Thread.cxx b/src/player/Thread.cxx index ebc8abf87..17a1d1339 100644 --- a/src/player/Thread.cxx +++ b/src/player/Thread.cxx @@ -1082,7 +1082,6 @@ Player::Run() noexcept if (paused) { if (pc.command == PlayerCommand::NONE) pc.Wait(); - continue; } else if (!pipe->IsEmpty()) { /* at least one music chunk is ready - send it to the audio output */ @@ -1099,7 +1098,6 @@ Player::Run() noexcept wait for it */ dc.Signal(); dc.WaitForDecoder(); - continue; } else if (IsDecoderAtNextSong()) { /* at the beginning of a new song */ |