Skip to content

Commit

Permalink
Make flags contiguous: There's no reason for the gap :)
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 269514872
  • Loading branch information
ojw28 committed Sep 17, 2019
1 parent 57370b3 commit 2fca01b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2fca01b

Please sign in to comment.