Remove IntArrayQueue from public API

PiperOrigin-RevId: 389622428
This commit is contained in:
olly 2021-08-09 14:54:15 +01:00 committed by Oliver Woodman
parent db1fe8041b
commit 5dc8eeb4bf
3 changed files with 3 additions and 4 deletions

View file

@ -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;

View file

@ -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;

View file

@ -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;