Skip to content

Commit

Permalink
Update Configuration.java
Browse files Browse the repository at this point in the history
  • Loading branch information
hannah-smartbear committed Feb 13, 2023
1 parent e2fa943 commit 3799f32
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import android.content.Context;

import androidx.annotation.FloatRange;
import androidx.annotation.IntRange;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
Expand Down Expand Up @@ -542,7 +541,9 @@ public void setMaxBreadcrumbs(@IntRange(from = 0, to = 500) int maxBreadcrumbs)
*
* By default, 32 events are persisted.
*/
public int getMaxPersistedEvents() { return impl.getMaxPersistedEvents(); }
public int getMaxPersistedEvents() {
return impl.getMaxPersistedEvents();
}

/**
* Sets the maximum number of persisted events which will be stored. Once the threshold is
Expand Down

0 comments on commit 3799f32

Please sign in to comment.