Skip to content

Commit c6f5bc5

Browse files
getsentry-botrunningcode
authored andcommitted
Format code
1 parent 1e1e214 commit c6f5bc5

File tree

2 files changed

+7
-19
lines changed

2 files changed

+7
-19
lines changed

sentry-android-distribution/src/main/java/io/sentry/android/distribution/Distribution.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public object Distribution {
6565
public fun downloadUpdate(context: Context, info: UpdateInfo) {
6666
val browserIntent = Intent(Intent.ACTION_VIEW, Uri.parse(info.downloadUrl))
6767
browserIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
68-
68+
6969
try {
7070
context.startActivity(browserIntent)
7171
} catch (e: android.content.ActivityNotFoundException) {
Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,15 @@
11
package io.sentry.android.distribution
22

3-
/**
4-
* Configuration options for Sentry Build Distribution.
5-
*/
3+
/** Configuration options for Sentry Build Distribution. */
64
public class DistributionOptions(
7-
/**
8-
* Organization authentication token for API access
9-
*/
5+
/** Organization authentication token for API access */
106
public val orgAuthToken: String,
11-
/**
12-
* Sentry organization slug
13-
*/
7+
/** Sentry organization slug */
148
public val organizationSlug: String,
15-
/**
16-
* Sentry project slug
17-
*/
9+
/** Sentry project slug */
1810
public val projectSlug: String,
19-
/**
20-
* Base URL for Sentry API (defaults to https://sentry.io)
21-
*/
11+
/** Base URL for Sentry API (defaults to https://sentry.io) */
2212
public val sentryBaseUrl: String = "https://sentry.io",
23-
/**
24-
* Optional build configuration name for filtering
25-
*/
13+
/** Optional build configuration name for filtering */
2614
public val buildConfiguration: String? = null,
2715
)

0 commit comments

Comments
 (0)