Commit 1a1a454d by olly Committed by Oliver Woodman

Remove stray break from HLS playlist parser.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=124225444
parent aa73e137
...@@ -312,7 +312,6 @@ public final class HlsPlaylistParser implements UriLoadable.Parser<HlsPlaylist> ...@@ -312,7 +312,6 @@ public final class HlsPlaylistParser implements UriLoadable.Parser<HlsPlaylist>
segmentByterangeLength = C.LENGTH_UNBOUNDED; segmentByterangeLength = C.LENGTH_UNBOUNDED;
} else if (line.equals(ENDLIST_TAG)) { } else if (line.equals(ENDLIST_TAG)) {
live = false; live = false;
break;
} }
} }
return new HlsMediaPlaylist(baseUri, mediaSequence, targetDurationSecs, version, live, return new HlsMediaPlaylist(baseUri, mediaSequence, targetDurationSecs, version, live,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment