Remove stray break from HLS playlist parser.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=124225444
This commit is contained in:
olly 2016-06-07 02:33:20 -07:00 committed by Oliver Woodman
parent aa73e137d6
commit 1a1a454d09

View File

@ -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,