Skip to content

Commit

Permalink
fix: remove useless logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
oxyroid committed Jul 28, 2024
1 parent 127b576 commit 3ad0fc5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/src/main/java/com/m3u/data/parser/m3u/M3UParserImpl.kt
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ internal class M3UParserImpl @Inject constructor(
}
val kodiMetadata = buildMap {
for (match in kodiMatches) {
val key = match.groups[1]!!.value.also { println(it) }
val value = match.groups[2]?.value?.ifBlank { null }.also { println(it) } ?: continue
val key = match.groups[1]!!.value
val value = match.groups[2]?.value?.ifBlank { null } ?: continue
put(key.trim(), value.trim())
}
}
Expand Down

0 comments on commit 3ad0fc5

Please sign in to comment.