Android-Password-Store/sentry-stub/src/main/kotlin/io/sentry/Scope.kt
renovate[bot] d04e1fa368
fix(deps): update dependency com.facebook:ktfmt to v0.44 (#2490)
* fix(deps): update dependency com.facebook:ktfmt to v0.44

* chore: reformat with ktfmt 0.44

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
2023-04-29 01:28:41 +00:00

11 lines
204 B
Kotlin

@file:Suppress("Unused", "UNUSED_PARAMETER")
package io.sentry
import io.sentry.protocol.User
public class Scope {
public var user: User? = null
public fun setTag(tag: String, value: String) {}
}