]> WPIA git - gigi.git/commitdiff
upd: stray old terminology
authorLucas Werkmeister <mail@lucaswerkmeister.de>
Sat, 25 Feb 2017 12:38:03 +0000 (13:38 +0100)
committerLucas Werkmeister <mail@lucaswerkmeister.de>
Sat, 25 Feb 2017 19:19:11 +0000 (20:19 +0100)
Looks like I missed this in 08c94162.

Change-Id: I8a4f73dd71c17dcf3e64d9f706487d6ad2986849

src/club/wpia/gigi/pages/wot/VerificationForm.java

index 4d92f28ab03b4b66ebf0ad17a5f9a59e6d73cef8..6a785c0ce8f714a3f610b9c817617dd0113e02b6 100644 (file)
@@ -206,17 +206,17 @@ public class VerificationForm extends Form {
             throw gae;
         }
 
-        LinkedList<Name> toAssure = new LinkedList<Name>();
+        LinkedList<Name> toVerify = new LinkedList<Name>();
         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());