Commit 5dc8eeb4 by olly Committed by Oliver Woodman

Remove IntArrayQueue from public API

PiperOrigin-RevId: 389622428
parent db1fe804
......@@ -27,7 +27,6 @@ import androidx.annotation.GuardedBy;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.RequiresApi;
import com.google.android.exoplayer2.util.IntArrayQueue;
import com.google.android.exoplayer2.util.Util;
import java.util.ArrayDeque;
import org.checkerframework.checker.nullness.qual.MonotonicNonNull;
......
......@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.android.exoplayer2.util;
package com.google.android.exoplayer2.mediacodec;
import java.util.NoSuchElementException;
......@@ -23,7 +23,7 @@ import java.util.NoSuchElementException;
* <p>Use this class instead of a {@link java.util.Deque} to avoid boxing int primitives to {@link
* Integer} instances.
*/
public final class IntArrayQueue {
/* package */ final class IntArrayQueue {
/** Default capacity needs to be a power of 2. */
private static final int DEFAULT_INITIAL_CAPACITY = 16;
......
......@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.android.exoplayer2.util;
package com.google.android.exoplayer2.mediacodec;
import static com.google.common.truth.Truth.assertThat;
import static org.junit.Assert.fail;
......
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