Removes unnecessary println

This commit is contained in:
Vitor Pamplona 2023-02-12 21:47:53 -05:00
parent caa170f78e
commit 4e53a9fda0

View File

@ -142,7 +142,7 @@ class Note(val idHex: String) {
fun isZappedBy(user: User): Boolean {
// Zaps who the requester was the user
return zaps.any { println(it.key.author?.toBestDisplayName()); it.key.author == user }
return zaps.any { it.key.author == user }
}
fun isReactedBy(user: User): Boolean {