Skip to content

Commit

Permalink
fix: Remove debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
crimera committed Oct 26, 2024
1 parent 37b9afa commit 33e4d08
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,7 @@ object BringBackTwitterResourcePatch : ResourcePatch() {
it.write("<?xml version=\"1.0\" encoding=\"utf-8\"?><resources></resources>")
}
}
measureExecutionTime {
updateStringsFile(stringsFile, value, context)
}.let {
println(it)
}
updateStringsFile(stringsFile, value, context)
}
}

Expand All @@ -141,7 +137,6 @@ object BringBackTwitterResourcePatch : ResourcePatch() {
*/
val content = node.textContent
node.textContent = stringsMap[name] ?: run {
println("parsing: ${stringsFile.parent}")
val delimiter = if (content.contains("-")) '-' else ' '
content.split(delimiter).joinToString(delimiter.toString()) {
if (it.startsWithSpecialByte()) "Twitter" else it
Expand Down

0 comments on commit 33e4d08

Please sign in to comment.