clean up: remove duplicate semicolons
Change-Id: Ic3534cd759c53ab0d7a435ec00aa29a0ac92a5b8
This commit is contained in:
@@ -353,7 +353,7 @@ public class PostReview implements RestModifyView<RevisionResource, ReviewInput>
|
||||
throw new OrmException("could not load PatchList for this patchset", e);
|
||||
}
|
||||
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()) {
|
||||
String path = ent.getKey();
|
||||
|
@@ -273,7 +273,7 @@ final class SetAccountCommand extends BaseCommand {
|
||||
private void deleteEmail(String email) throws UnloggedFailure,
|
||||
RestApiException, OrmException {
|
||||
if (email.equals("ALL")) {
|
||||
List<EmailInfo> emails = getEmails.apply(rsrc);;
|
||||
List<EmailInfo> emails = getEmails.apply(rsrc);
|
||||
for (EmailInfo e : emails) {
|
||||
deleteEmail.apply(new AccountResource.Email(user, e.email),
|
||||
new DeleteEmail.Input());
|
||||
|
Reference in New Issue
Block a user