File tree Expand file tree Collapse file tree 5 files changed +0
-37
lines changed Expand file tree Collapse file tree 5 files changed +0
-37
lines changed Original file line number Diff line number Diff line change @@ -901,7 +901,6 @@ public abstract interface class io/sentry/IScopes {
901
901
public abstract fun pushScope ()Lio/sentry/ISentryLifecycleToken;
902
902
public abstract fun removeExtra (Ljava/lang/String;)V
903
903
public abstract fun removeTag (Ljava/lang/String;)V
904
- public fun reportFullDisplayed ()V
905
904
public abstract fun reportFullyDisplayed ()V
906
905
public abstract fun setActiveSpan (Lio/sentry/ISpan;)V
907
906
public abstract fun setExtra (Ljava/lang/String;Ljava/lang/String;)V
@@ -2370,7 +2369,6 @@ public final class io/sentry/Sentry {
2370
2369
public static fun pushScope ()Lio/sentry/ISentryLifecycleToken;
2371
2370
public static fun removeExtra (Ljava/lang/String;)V
2372
2371
public static fun removeTag (Ljava/lang/String;)V
2373
- public static fun reportFullDisplayed ()V
2374
2372
public static fun reportFullyDisplayed ()V
2375
2373
public static fun setCurrentHub (Lio/sentry/IHub;)Lio/sentry/ISentryLifecycleToken;
2376
2374
public static fun setCurrentScopes (Lio/sentry/IScopes;)Lio/sentry/ISentryLifecycleToken;
Original file line number Diff line number Diff line change @@ -657,14 +657,6 @@ void setSpanContext(
657
657
*/
658
658
void reportFullyDisplayed ();
659
659
660
- /**
661
- * @deprecated See {@link IScopes#reportFullyDisplayed()}.
662
- */
663
- @ Deprecated
664
- default void reportFullDisplayed () {
665
- reportFullyDisplayed ();
666
- }
667
-
668
660
/**
669
661
* Continue a trace based on HTTP header values. If no "sentry-trace" header is provided a random
670
662
* trace ID and span ID is created.
Original file line number Diff line number Diff line change @@ -1085,15 +1085,6 @@ public static void reportFullyDisplayed() {
1085
1085
getCurrentScopes ().reportFullyDisplayed ();
1086
1086
}
1087
1087
1088
- /**
1089
- * @deprecated See {@link Sentry#reportFullyDisplayed()}.
1090
- */
1091
- @ Deprecated
1092
- @ SuppressWarnings ("InlineMeSuggester" )
1093
- public static void reportFullDisplayed () {
1094
- reportFullyDisplayed ();
1095
- }
1096
-
1097
1088
/** the metrics API for the current Scopes */
1098
1089
@ NotNull
1099
1090
@ ApiStatus .Experimental
Original file line number Diff line number Diff line change @@ -1975,13 +1975,6 @@ class ScopesTest {
1975
1975
assertTrue(called)
1976
1976
}
1977
1977
1978
- @Test
1979
- fun `reportFullDisplayed calls reportFullyDisplayed` () {
1980
- val scopes = spy(generateScopes())
1981
- scopes.reportFullDisplayed()
1982
- verify(scopes).reportFullyDisplayed()
1983
- }
1984
-
1985
1978
@Test
1986
1979
fun `continueTrace creates propagation context from headers and returns transaction context if performance enabled` () {
1987
1980
val scopes = generateScopes()
Original file line number Diff line number Diff line change @@ -714,17 +714,6 @@ class SentryTest {
714
714
verify(scopes).reportFullyDisplayed()
715
715
}
716
716
717
- @Test
718
- fun `reportFullDisplayed calls reportFullyDisplayed` () {
719
- val scopes = mock<IScopes >()
720
- Sentry .init {
721
- it.dsn = dsn
722
- }
723
- Sentry .setCurrentScopes(scopes)
724
- Sentry .reportFullDisplayed()
725
- verify(scopes).reportFullyDisplayed()
726
- }
727
-
728
717
@Test
729
718
fun `ignores executorService if it is closed` () {
730
719
var sentryOptions: SentryOptions ? = null
You can’t perform that action at this time.
0 commit comments