From 2fca01b925e81cfc29206a9d0dbe48535e6cb049 Mon Sep 17 00:00:00 2001 From: olly Date: Tue, 17 Sep 2019 09:12:53 +0100 Subject: [PATCH] Make flags contiguous: There's no reason for the gap :) PiperOrigin-RevId: 269514872 --- .../java/com/google/android/exoplayer2/upstream/DataSpec.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/main/java/com/google/android/exoplayer2/upstream/DataSpec.java b/library/core/src/main/java/com/google/android/exoplayer2/upstream/DataSpec.java index e32e063d0c..78b31896ab 100644 --- a/library/core/src/main/java/com/google/android/exoplayer2/upstream/DataSpec.java +++ b/library/core/src/main/java/com/google/android/exoplayer2/upstream/DataSpec.java @@ -68,7 +68,7 @@ public final class DataSpec { * setting this flag may also enable more concurrent access to the data (e.g. reading one fragment * whilst writing another). */ - public static final int FLAG_ALLOW_CACHE_FRAGMENTATION = 1 << 4; // 16 + public static final int FLAG_ALLOW_CACHE_FRAGMENTATION = 1 << 3; // 8 /** * The set of HTTP methods that are supported by ExoPlayer {@link HttpDataSource}s. One of {@link