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