Skip to content

Commit

Permalink
merged base branch
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanosiano committed Feb 27, 2025
1 parent 5c2c846 commit 79742ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions sentry/api/sentry.api
Original file line number Diff line number Diff line change
Expand Up @@ -444,10 +444,10 @@ public abstract interface class io/sentry/EventProcessor {
public final class io/sentry/ExperimentalOptions {
public fun <init> (Z)V
public fun getProfileLifecycle ()Lio/sentry/ProfileLifecycle;
public fun getProfileSessionSampleRate ()D
public fun getProfileSessionSampleRate ()Ljava/lang/Double;
public fun getSessionReplay ()Lio/sentry/SentryReplayOptions;
public fun setProfileLifecycle (Lio/sentry/ProfileLifecycle;)V
public fun setProfileSessionSampleRate (D)V
public fun setProfileSessionSampleRate (Ljava/lang/Double;)V
public fun setSessionReplay (Lio/sentry/SentryReplayOptions;)V
}

Expand Down Expand Up @@ -3007,7 +3007,7 @@ public class io/sentry/SentryOptions {
public fun getOutboxPath ()Ljava/lang/String;
public fun getPerformanceCollectors ()Ljava/util/List;
public fun getProfileLifecycle ()Lio/sentry/ProfileLifecycle;
public fun getProfileSessionSampleRate ()D
public fun getProfileSessionSampleRate ()Ljava/lang/Double;
public fun getProfilesSampleRate ()Ljava/lang/Double;
public fun getProfilesSampler ()Lio/sentry/SentryOptions$ProfilesSamplerCallback;
public fun getProfilingTracesDirPath ()Ljava/lang/String;
Expand Down Expand Up @@ -6340,7 +6340,7 @@ public final class io/sentry/util/Random : java/io/Serializable {

public final class io/sentry/util/SampleRateUtils {
public fun <init> ()V
public static fun isValidContinuousProfilesSampleRate (D)Z
public static fun isValidContinuousProfilesSampleRate (Ljava/lang/Double;)Z
public static fun isValidProfilesSampleRate (Ljava/lang/Double;)Z
public static fun isValidSampleRate (Ljava/lang/Double;)Z
public static fun isValidTracesSampleRate (Ljava/lang/Double;)Z
Expand Down
3 changes: 1 addition & 2 deletions sentry/src/main/java/io/sentry/ExperimentalOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ public void setSessionReplay(final @NotNull SentryReplayOptions sessionReplayOpt
* @return the profile lifecycle
*/
@ApiStatus.Experimental
@NotNull
public ProfileLifecycle getProfileLifecycle() {
public @NotNull ProfileLifecycle getProfileLifecycle() {
return profileLifecycle;
}

Expand Down

0 comments on commit 79742ca

Please sign in to comment.