Loading core/java/android/accounts/AccountManager.java +10 −6 Original line number Diff line number Diff line Loading @@ -1916,14 +1916,18 @@ public class AccountManager { handler.post(new Runnable() { @Override 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 @@ -1916,14 +1916,18 @@ public class AccountManager { handler.post(new Runnable() { @Override 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