clean up: remove duplicate semicolons

Change-Id: Ic3534cd759c53ab0d7a435ec00aa29a0ac92a5b8
This commit is contained in:
Khai Do
2014-07-23 15:02:58 -07:00
parent db8dfae19b
commit 8c946d72e3
2 changed files with 2 additions and 2 deletions

View File

@@ -353,7 +353,7 @@ public class PostReview implements RestModifyView<RevisionResource, ReviewInput>
throw new OrmException("could not load PatchList for this patchset", e); throw new OrmException("could not load PatchList for this patchset", e);
} }
RevId patchSetCommit = new RevId(ObjectId.toString(patchList.getNewId())); RevId patchSetCommit = new RevId(ObjectId.toString(patchList.getNewId()));
RevId baseCommit = new RevId(ObjectId.toString(patchList.getOldId()));; RevId baseCommit = new RevId(ObjectId.toString(patchList.getOldId()));
for (Map.Entry<String, List<CommentInput>> ent : in.entrySet()) { for (Map.Entry<String, List<CommentInput>> ent : in.entrySet()) {
String path = ent.getKey(); String path = ent.getKey();

View File

@@ -273,7 +273,7 @@ final class SetAccountCommand extends BaseCommand {
private void deleteEmail(String email) throws UnloggedFailure, private void deleteEmail(String email) throws UnloggedFailure,
RestApiException, OrmException { RestApiException, OrmException {
if (email.equals("ALL")) { if (email.equals("ALL")) {
List<EmailInfo> emails = getEmails.apply(rsrc);; List<EmailInfo> emails = getEmails.apply(rsrc);
for (EmailInfo e : emails) { for (EmailInfo e : emails) {
deleteEmail.apply(new AccountResource.Email(user, e.email), deleteEmail.apply(new AccountResource.Email(user, e.email),
new DeleteEmail.Input()); new DeleteEmail.Input());