aboutsummaryrefslogtreecommitdiff
path: root/shadows/framework/src/main/java/org/robolectric/shadows/ShadowTrace.java
diff options
context:
space:
mode:
Diffstat (limited to 'shadows/framework/src/main/java/org/robolectric/shadows/ShadowTrace.java')
-rw-r--r--shadows/framework/src/main/java/org/robolectric/shadows/ShadowTrace.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/shadows/framework/src/main/java/org/robolectric/shadows/ShadowTrace.java b/shadows/framework/src/main/java/org/robolectric/shadows/ShadowTrace.java
index 16e501563..63a7d7c8c 100644
--- a/shadows/framework/src/main/java/org/robolectric/shadows/ShadowTrace.java
+++ b/shadows/framework/src/main/java/org/robolectric/shadows/ShadowTrace.java
@@ -1,6 +1,5 @@
package org.robolectric.shadows;
-import static android.os.Build.VERSION_CODES.JELLY_BEAN_MR2;
import static android.os.Build.VERSION_CODES.Q;
import static com.google.common.base.Verify.verifyNotNull;
@@ -51,7 +50,7 @@ public class ShadowTrace {
private static long tags = TRACE_TAG_APP;
/** Starts a new trace section with given name. */
- @Implementation(minSdk = JELLY_BEAN_MR2)
+ @Implementation
protected static void beginSection(String sectionName) {
if (tags == 0) {
return;
@@ -63,7 +62,7 @@ public class ShadowTrace {
}
/** Ends the most recent active trace section. */
- @Implementation(minSdk = JELLY_BEAN_MR2)
+ @Implementation
protected static void endSection() {
if (tags == 0) {
return;
@@ -112,12 +111,12 @@ public class ShadowTrace {
previousAsyncSections.add(section);
}
- @Implementation(minSdk = JELLY_BEAN_MR2)
+ @Implementation
protected static long nativeGetEnabledTags() {
return tags;
}
- @Implementation(minSdk = JELLY_BEAN_MR2)
+ @Implementation
protected static void setAppTracingAllowed(boolean appTracingAllowed) {
tags = appTracingAllowed ? TRACE_TAG_APP : 0;
}