Commit 9cd49120 by olly Committed by Ian Baker

Marks ConditionVariable as non-final so it can be mocked.

PiperOrigin-RevId: 291207668
parent 15a43e5c
...@@ -19,7 +19,7 @@ package com.google.android.exoplayer2.util; ...@@ -19,7 +19,7 @@ package com.google.android.exoplayer2.util;
* An interruptible condition variable whose {@link #open()} and {@link #close()} methods return * An interruptible condition variable whose {@link #open()} and {@link #close()} methods return
* whether they resulted in a change of state. * whether they resulted in a change of state.
*/ */
public final class ConditionVariable { public class ConditionVariable {
private boolean isOpen; private boolean isOpen;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment