diff options
author | renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> | 2023-04-29 01:28:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 01:28:41 +0000 |
commit | d04e1fa368115718a308c123a3b9c18e6626f5f1 (patch) | |
tree | 12dd5d3698e9d644bc588b2a58e76048dad7a244 /sentry-stub | |
parent | 251d94c9f3a9186385b5fae358e5384576ab36f2 (diff) |
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>
Diffstat (limited to 'sentry-stub')
-rw-r--r-- | sentry-stub/build.gradle.kts | 4 | ||||
-rw-r--r-- | sentry-stub/src/main/kotlin/io/sentry/Scope.kt | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/sentry-stub/build.gradle.kts b/sentry-stub/build.gradle.kts index 9e5770e6..698a36b5 100644 --- a/sentry-stub/build.gradle.kts +++ b/sentry-stub/build.gradle.kts @@ -2,6 +2,4 @@ * Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved. * SPDX-License-Identifier: GPL-3.0-only */ -plugins { - id("com.github.android-password-store.kotlin-jvm-library") -} +plugins { id("com.github.android-password-store.kotlin-jvm-library") } diff --git a/sentry-stub/src/main/kotlin/io/sentry/Scope.kt b/sentry-stub/src/main/kotlin/io/sentry/Scope.kt index 34557a84..46726d8f 100644 --- a/sentry-stub/src/main/kotlin/io/sentry/Scope.kt +++ b/sentry-stub/src/main/kotlin/io/sentry/Scope.kt @@ -6,5 +6,6 @@ import io.sentry.protocol.User public class Scope { public var user: User? = null + public fun setTag(tag: String, value: String) {} } |