Loading services/autofill/java/com/android/server/autofill/AutofillManagerService.java +2 −6 Original line number Diff line number Diff line Loading @@ -1662,12 +1662,8 @@ public final class AutofillManagerService @NonNull IResultReceiver receiver) { boolean enabled = false; synchronized (mLock) { final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); if (service != null) { final AutofillManagerServiceImpl service = getServiceForUserLocked(userId); enabled = Objects.equals(packageName, service.getServicePackageName()); } else if (sVerbose) { Slog.v(TAG, "isServiceEnabled(): no service for " + userId); } } send(receiver, enabled); } Loading Loading
services/autofill/java/com/android/server/autofill/AutofillManagerService.java +2 −6 Original line number Diff line number Diff line Loading @@ -1662,12 +1662,8 @@ public final class AutofillManagerService @NonNull IResultReceiver receiver) { boolean enabled = false; synchronized (mLock) { final AutofillManagerServiceImpl service = peekServiceForUserLocked(userId); if (service != null) { final AutofillManagerServiceImpl service = getServiceForUserLocked(userId); enabled = Objects.equals(packageName, service.getServicePackageName()); } else if (sVerbose) { Slog.v(TAG, "isServiceEnabled(): no service for " + userId); } } send(receiver, enabled); } Loading