Loading core/java/android/accounts/AccountManager.java +10 −6 Original line number Diff line number Diff line Loading @@ -1857,14 +1857,18 @@ public class AccountManager { handler = (handler == null) ? mMainHandler : handler; handler.post(new Runnable() { public void run() { synchronized (mAccountsUpdatedListeners) { try { if (mAccountsUpdatedListeners.containsKey(listener)) { listener.onAccountsUpdated(accountsCopy); } } catch (SQLException e) { // Better luck next time. If the problem was disk-full, // the STORAGE_OK intent will re-trigger the update. Log.e(TAG, "Can't update accounts", e); } } } }); } Loading Loading
core/java/android/accounts/AccountManager.java +10 −6 Original line number Diff line number Diff line Loading @@ -1857,14 +1857,18 @@ public class AccountManager { handler = (handler == null) ? mMainHandler : handler; handler.post(new Runnable() { public void run() { synchronized (mAccountsUpdatedListeners) { try { if (mAccountsUpdatedListeners.containsKey(listener)) { listener.onAccountsUpdated(accountsCopy); } } catch (SQLException e) { // Better luck next time. If the problem was disk-full, // the STORAGE_OK intent will re-trigger the update. Log.e(TAG, "Can't update accounts", e); } } } }); } Loading