From 408d18fa0e884e419cd64fbdf1a6beb37500ce21 Mon Sep 17 00:00:00 2001 From: MKucharski Date: Thu, 4 Jul 2024 09:54:30 +0200 Subject: [PATCH] Fix formatting --- lib/src/hls/hls_parser/hls_playlist_parser.dart | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/src/hls/hls_parser/hls_playlist_parser.dart b/lib/src/hls/hls_parser/hls_playlist_parser.dart index 6ec8544..6faef9f 100644 --- a/lib/src/hls/hls_parser/hls_playlist_parser.dart +++ b/lib/src/hls/hls_parser/hls_playlist_parser.dart @@ -500,8 +500,7 @@ class HlsPlaylistParser { if (instreamId.startsWith('CC')) { mimeType = MimeTypes.applicationCea608; accessibilityChannel = int.parse(instreamId.substring(2)); - } else - /* starts with SERVICE */ { + } else /* starts with SERVICE */ { mimeType = MimeTypes.applicationCea708; accessibilityChannel = int.parse(instreamId.substring(7)); } @@ -830,8 +829,7 @@ class HlsPlaylistParser { if (methodNone == method) { currentSchemeDatas.clear(); cachedDrmInitData = null; - } else - /* !METHOD_NONE.equals(method) */ { + } else /* !METHOD_NONE.equals(method) */ { fullSegmentEncryptionIV = _parseStringAttr( source: line, pattern: regexpIv,