Loading src/com/android/server/telecom/PhoneAccountRegistrar.java +2 −2 Original line number Diff line number Diff line Loading @@ -500,7 +500,7 @@ public final class PhoneAccountRegistrar { packageName, phoneAccount.getAccountHandle().getComponentName().getPackageName())) { Log.i(this, "Removing phone account " + phoneAccount.getLabel()); it.remove(); mState.accounts.remove(phoneAccount); accountsRemoved = true; } } Loading Loading @@ -617,7 +617,7 @@ public final class PhoneAccountRegistrar { /** * The complete list of {@code PhoneAccount}s known to the Telecom subsystem. */ public final List<PhoneAccount> accounts = new ArrayList<>(); public final List<PhoneAccount> accounts = new CopyOnWriteArrayList<>(); /** * The version number of the State data. Loading Loading
src/com/android/server/telecom/PhoneAccountRegistrar.java +2 −2 Original line number Diff line number Diff line Loading @@ -500,7 +500,7 @@ public final class PhoneAccountRegistrar { packageName, phoneAccount.getAccountHandle().getComponentName().getPackageName())) { Log.i(this, "Removing phone account " + phoneAccount.getLabel()); it.remove(); mState.accounts.remove(phoneAccount); accountsRemoved = true; } } Loading Loading @@ -617,7 +617,7 @@ public final class PhoneAccountRegistrar { /** * The complete list of {@code PhoneAccount}s known to the Telecom subsystem. */ public final List<PhoneAccount> accounts = new ArrayList<>(); public final List<PhoneAccount> accounts = new CopyOnWriteArrayList<>(); /** * The version number of the State data. Loading