Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
SDK
/
exoplayer
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
a11f7b8c
authored
Jun 09, 2020
by
aquilescanta
Committed by
Ian Baker
Jun 09, 2020
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Document DataSource.getResponseHeaders case-insensitivity
PiperOrigin-RevId: 315480048
parent
947485e2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
library/common/src/main/java/com/google/android/exoplayer2/upstream/DataSource.java
library/common/src/main/java/com/google/android/exoplayer2/upstream/DataSource.java
View file @
a11f7b8c
...
@@ -74,6 +74,8 @@ public interface DataSource extends DataReader {
...
@@ -74,6 +74,8 @@ public interface DataSource extends DataReader {
/**
/**
* When the source is open, returns the response headers associated with the last {@link #open}
* When the source is open, returns the response headers associated with the last {@link #open}
* call. Otherwise, returns an empty map.
* call. Otherwise, returns an empty map.
*
* <p>Key look-up in the returned map is case-insensitive.
*/
*/
default
Map
<
String
,
List
<
String
>>
getResponseHeaders
()
{
default
Map
<
String
,
List
<
String
>>
getResponseHeaders
()
{
return
Collections
.
emptyMap
();
return
Collections
.
emptyMap
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment