Remove potential sensitive log

This commit is contained in:
sim 2024-11-04 19:09:37 +00:00
parent c712f25cca
commit b093c7869b
1 changed files with 0 additions and 2 deletions

View File

@ -1,13 +1,11 @@
package org.unifiedpush.distributor.nextpush.utils
import android.util.Log
import java.util.Timer
import kotlin.concurrent.schedule
fun MutableList<String>.containsTokenElseAdd(connectorToken: String): Boolean {
return synchronized(this) {
if (connectorToken !in this) {
Log.d(TAG, "Token: $this")
this.add(connectorToken)
delayRemove(this, connectorToken)
false