SystemInfoService{Impl}: Remove unused contributorAgreements method

Change-Id: Ib999603a21788ab48afe4a7d0d4a44196b4bef68
This commit is contained in:
David Pursehouse
2016-08-22 23:47:19 +09:00
parent bfc0c378bc
commit f801131ab2
2 changed files with 1 additions and 25 deletions

View File

@@ -14,7 +14,6 @@
package com.google.gerrit.common.data;
import com.google.gerrit.common.auth.SignInRequired;
import com.google.gwtjsonrpc.common.AllowCrossSiteRequest;
import com.google.gwtjsonrpc.common.AsyncCallback;
import com.google.gwtjsonrpc.common.RemoteJsonService;
@@ -29,8 +28,5 @@ public interface SystemInfoService extends RemoteJsonService {
@AllowCrossSiteRequest
void daemonHostKeys(AsyncCallback<List<SshHostKey>> callback);
@SignInRequired
void contributorAgreements(AsyncCallback<List<ContributorAgreement>> callback);
void clientError(String message, AsyncCallback<VoidResult> callback);
}