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

PiperOrigin-RevId: 291207668
This commit is contained in:
olly 2020-01-23 19:25:14 +00:00 committed by Ian Baker
parent 15a43e5c78
commit 9cd49120a0

View File

@ -19,7 +19,7 @@ package com.google.android.exoplayer2.util;
* An interruptible condition variable whose {@link #open()} and {@link #close()} methods return
* whether they resulted in a change of state.
*/
public final class ConditionVariable {
public class ConditionVariable {
private boolean isOpen;