Delete old PublishDraft

The only remaining caller was ReviewCommand; use the new-style API and
clean that up as well.

Change-Id: I2ee77c11ffada28b0edc7fba14f23d5d1b4313f6
This commit is contained in:
Dave Borowitz
2013-12-16 12:27:56 -08:00
parent 8e12408a21
commit ae3e53b50c
5 changed files with 26 additions and 213 deletions

View File

@@ -23,6 +23,7 @@ public interface RevisionApi {
/** {@code submit} with {@link SubmitInput#waitForMerge} set to true. */
void submit() throws RestApiException;
void submit(SubmitInput in) throws RestApiException;
void publish() throws RestApiException;
ChangeApi cherryPick(CherryPickInput in) throws RestApiException;
ChangeApi rebase() throws RestApiException;
}