Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a7fd5f65 authored by Shunkai Yao's avatar Shunkai Yao Committed by Automerger Merge Worker
Browse files

Merge "Avoid Object.wait(0)" into main am: a199526d am: 55aaea4e

parents b8b6fe60 55aaea4e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -4854,7 +4854,9 @@ public class AudioManager {
            synchronized (this) {
                while (!mQuit) {
                    final long timeToWait = timeOutTime - java.lang.System.currentTimeMillis();
                    if (timeToWait < 0) { break; }
                    if (timeToWait <= 0) {
                        break;
                    }
                    this.wait(timeToWait);
                }
            }