From 68e4ff0512dc41937941ff1bef52cc08f01e4e94 Mon Sep 17 00:00:00 2001 From: Lucas Werkmeister Date: Sat, 25 Feb 2017 13:38:03 +0100 Subject: [PATCH] upd: stray old terminology Looks like I missed this in 08c94162. Change-Id: I8a4f73dd71c17dcf3e64d9f706487d6ad2986849 --- src/club/wpia/gigi/pages/wot/VerificationForm.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/club/wpia/gigi/pages/wot/VerificationForm.java b/src/club/wpia/gigi/pages/wot/VerificationForm.java index 4d92f28a..6a785c0c 100644 --- a/src/club/wpia/gigi/pages/wot/VerificationForm.java +++ b/src/club/wpia/gigi/pages/wot/VerificationForm.java @@ -206,17 +206,17 @@ public class VerificationForm extends Form { throw gae; } - LinkedList toAssure = new LinkedList(); + LinkedList toVerify = new LinkedList(); for (int i = 0; i < selected.length; i++) { if (selected[i]) { - toAssure.add(applicantNames[i]); + toVerify.add(applicantNames[i]); } } - if (toAssure.size() == 0) { + if (toVerify.size() == 0) { throw new GigiApiException("You must confirm at least one name to verify an account."); } - Notary.verifyAll(agent, applicant, dob, pointsI, location, req.getParameter("date"), type, toAssure.toArray(new Name[toAssure.size()]), cs.getCountry()); + Notary.verifyAll(agent, applicant, dob, pointsI, location, req.getParameter("date"), type, toVerify.toArray(new Name[toVerify.size()]), cs.getCountry()); Outputable result = new TranslateCommand("Verification complete."); if (isWithPasswordReset()) { Language langApplicant = Language.getInstance(applicant.getPreferredLocale()); -- 2.39.2