Revert "Fix missing observer reply callbacks"

am: e4c1ccec72

* commit 'e4c1ccec7248443c23dd4a8d6725a4f492204726':
  Revert "Fix missing observer reply callbacks"
This commit is contained in:
Ian Pedowitz
2016-02-14 23:45:47 +00:00
committed by android-build-merger
2 changed files with 0 additions and 12 deletions

View File

@@ -398,12 +398,6 @@ public class PhoneStatusBarPolicy implements Callback, RotationLockController.Ro
@Override
public void onUserSwitching(int newUserId) throws RemoteException {
mUserInfoController.reloadUserInfo();
if (reply != null) {
try {
reply.sendResult(null);
} catch (RemoteException e) {
}
}
}
@Override

View File

@@ -1186,12 +1186,6 @@ public class FingerprintService extends SystemService implements IBinder.DeathRe
public void onUserSwitching(int newUserId) throws RemoteException {
mHandler.obtainMessage(MSG_USER_SWITCHING, newUserId, 0 /* unused */)
.sendToTarget();
if (reply != null) {
try {
reply.sendResult(null);
} catch (RemoteException e) {
}
}
}
@Override
public void onUserSwitchComplete(int newUserId) throws RemoteException {