removing some useles comments

This commit is contained in:
Tibor Kaputa 2021-09-20 22:34:50 +02:00 committed by GitHub
parent b0890dd581
commit e033dd284a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -35,7 +35,6 @@ class MessagesExporter(private val context: Context) {
if (config.exportSms) { if (config.exportSms) {
writer.name("sms") writer.name("sms")
writer.beginArray() writer.beginArray()
//write all sms
messageReader.forEachSms(threadId) { messageReader.forEachSms(threadId) {
writer.jsonValue(gson.toJson(it)) writer.jsonValue(gson.toJson(it))
written++ written++
@ -47,7 +46,6 @@ class MessagesExporter(private val context: Context) {
if (config.exportMms) { if (config.exportMms) {
writer.name("mms") writer.name("mms")
writer.beginArray() writer.beginArray()
//write all mms
messageReader.forEachMms(threadId) { messageReader.forEachMms(threadId) {
writer.jsonValue(gson.toJson(it)) writer.jsonValue(gson.toJson(it))
written++ written++