Remove old DeleteDraftChange RPC

Change-Id: I77f1cb57123922aa519eddbeda3b6b9fa44ea559
This commit is contained in:
David Ostrovsky
2013-12-06 22:33:42 +01:00
parent 0561211396
commit d0a4fea342
5 changed files with 16 additions and 90 deletions

View File

@@ -20,7 +20,6 @@ import com.google.gerrit.reviewdb.client.PatchSet;
import com.google.gwtjsonrpc.common.AsyncCallback;
import com.google.gwtjsonrpc.common.RemoteJsonService;
import com.google.gwtjsonrpc.common.RpcImpl;
import com.google.gwtjsonrpc.common.VoidResult;
import com.google.gwtjsonrpc.common.RpcImpl.Version;
@RpcImpl(version = Version.V2_0)
@@ -29,10 +28,6 @@ public interface ChangeManageService extends RemoteJsonService {
@SignInRequired
void publish(PatchSet.Id patchSetId, AsyncCallback<ChangeDetail> callback);
@Audit
@SignInRequired
void deleteDraftChange(PatchSet.Id patchSetId, AsyncCallback<VoidResult> callback);
@Audit
@SignInRequired
void rebaseChange(PatchSet.Id patchSetId, AsyncCallback<ChangeDetail> callback);