mirror of
https://github.com/samsonjs/media.git
synced 2026-04-04 11:05:47 +00:00
Merge pull request #2538 from mofneko/dev-v2-fix-unused-variable
Replace list access with local variable
This commit is contained in:
commit
5b98ff7246
1 changed files with 1 additions and 1 deletions
|
|
@ -315,7 +315,7 @@ public final class HlsPlaylistTracker implements Loader.Callback<ParsingLoadable
|
|||
for (int i = 0; i < listSize; i++) {
|
||||
HlsUrl url = urls.get(i);
|
||||
MediaPlaylistBundle bundle = new MediaPlaylistBundle(url, currentTimeMs);
|
||||
playlistBundles.put(urls.get(i), bundle);
|
||||
playlistBundles.put(url, bundle);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue