AccountSecurity: Remove unused updateContact method

All UI screens now use the REST API.

Change-Id: Ia5934d58e1173e3e47f595fc2a468832f3960099
Signed-off-by: Edwin Kempin <ekempin@google.com>
This commit is contained in:
David Pursehouse
2016-02-19 11:12:55 +09:00
committed by Edwin Kempin
parent 576df448d7
commit 8539921636
2 changed files with 2 additions and 52 deletions

View File

@@ -16,7 +16,6 @@ package com.google.gerrit.common.data;
import com.google.gerrit.common.audit.Audit;
import com.google.gerrit.common.auth.SignInRequired;
import com.google.gerrit.reviewdb.client.Account;
import com.google.gerrit.reviewdb.client.AccountExternalId;
import com.google.gwtjsonrpc.common.AsyncCallback;
import com.google.gwtjsonrpc.common.RemoteJsonService;
@@ -37,11 +36,6 @@ public interface AccountSecurity extends RemoteJsonService {
void deleteExternalIds(Set<AccountExternalId.Key> keys,
AsyncCallback<Set<AccountExternalId.Key>> callback);
@Audit
@SignInRequired
void updateContact(String fullName, String emailAddr,
AsyncCallback<Account> callback);
@Audit
@SignInRequired
void enterAgreement(String agreementName,