diff options
| author | 2025-02-03 02:19:48 -0800 | |
|---|---|---|
| committer | 2025-02-03 02:19:48 -0800 | |
| commit | de28f673ceddc40c862ec91784f090e99049f13d (patch) | |
| tree | fcea1c6668229e448d49202efe21647120a5c2b5 | |
| parent | 1d6cde276ad82014f8a6fa5ded7b179e4e0ff283 (diff) | |
| parent | bef25bf55c95819564a24b33b05cc66003eccb3f (diff) | |
Merge "Make isDesktopModeSupported private." into main
| -rw-r--r-- | libs/WindowManager/Shell/shared/src/com/android/wm/shell/shared/desktopmode/DesktopModeStatus.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libs/WindowManager/Shell/shared/src/com/android/wm/shell/shared/desktopmode/DesktopModeStatus.java b/libs/WindowManager/Shell/shared/src/com/android/wm/shell/shared/desktopmode/DesktopModeStatus.java index da62be7f142f..deec52d1c19e 100644 --- a/libs/WindowManager/Shell/shared/src/com/android/wm/shell/shared/desktopmode/DesktopModeStatus.java +++ b/libs/WindowManager/Shell/shared/src/com/android/wm/shell/shared/desktopmode/DesktopModeStatus.java @@ -208,8 +208,7 @@ public class DesktopModeStatus { /** * Return {@code true} if the current device supports desktop mode. */ - @VisibleForTesting - public static boolean isDesktopModeSupported(@NonNull Context context) { + private static boolean isDesktopModeSupported(@NonNull Context context) { return context.getResources().getBoolean(R.bool.config_isDesktopModeSupported); } |