diff options
| -rw-r--r-- | services/core/java/com/android/server/DynamicSystemService.java | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/services/core/java/com/android/server/DynamicSystemService.java b/services/core/java/com/android/server/DynamicSystemService.java index 7b02b6e0ac11..7909e3096cbe 100644 --- a/services/core/java/com/android/server/DynamicSystemService.java +++ b/services/core/java/com/android/server/DynamicSystemService.java @@ -179,18 +179,7 @@ public class DynamicSystemService extends IDynamicSystemService.Stub implements @Override public boolean isInUse() throws RemoteException { - boolean gsidWasRunning = "running".equals(SystemProperties.get("init.svc.gsid")); - boolean isInUse = false; - - try { - isInUse = getGsiService().isGsiRunning(); - } finally { - if (!gsidWasRunning && !isInUse) { - mGsiService = null; - } - } - - return isInUse; + return SystemProperties.getBoolean("ro.gsid.image_running", false); } @Override |