summaryrefslogtreecommitdiff
path: root/builtInServices/src/com/android/server/wm/CarActivityInterceptorInterface.java
diff options
context:
space:
mode:
Diffstat (limited to 'builtInServices/src/com/android/server/wm/CarActivityInterceptorInterface.java')
-rw-r--r--builtInServices/src/com/android/server/wm/CarActivityInterceptorInterface.java8
1 files changed, 0 insertions, 8 deletions
diff --git a/builtInServices/src/com/android/server/wm/CarActivityInterceptorInterface.java b/builtInServices/src/com/android/server/wm/CarActivityInterceptorInterface.java
index fed022e..bf8ec09 100644
--- a/builtInServices/src/com/android/server/wm/CarActivityInterceptorInterface.java
+++ b/builtInServices/src/com/android/server/wm/CarActivityInterceptorInterface.java
@@ -16,13 +16,9 @@
package com.android.server.wm;
-import android.annotation.RequiresApi;
import android.annotation.SystemApi;
import android.annotation.UserIdInt;
-import android.car.builtin.annotation.PlatformVersion;
-import android.os.Build;
-import com.android.annotation.AddedIn;
/**
* Interface implemented by {@link com.android.internal.car.CarActivityInterceptor} and used by
@@ -42,8 +38,6 @@ public interface CarActivityInterceptorInterface {
* See {@link com.android.server.pm.UserManagerInternal#getUserAssignedToDisplay(int)} for
* the detail.
*/
- @RequiresApi(Build.VERSION_CODES.UPSIDE_DOWN_CAKE)
- @AddedIn(PlatformVersion.UPSIDE_DOWN_CAKE_0)
@UserIdInt int getUserAssignedToDisplay(int displayId);
/**
@@ -52,7 +46,5 @@ public interface CarActivityInterceptorInterface {
* See {@link com.android.server.pm.UserManagerInternal#getMainDisplayAssignedToUser(int)} for
* the detail.
*/
- @RequiresApi(Build.VERSION_CODES.UPSIDE_DOWN_CAKE)
- @AddedIn(PlatformVersion.UPSIDE_DOWN_CAKE_0)
int getMainDisplayAssignedToUser(@UserIdInt int userId);
}