01/02: fix create voterList
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository pollen. See http://git.chorem.org/pollen.git commit c944497477d1d8caeeb26d88e27664efe9433e56 Author: Adrien Garandel <a.garandel@dralagen.fr> Date: Tue Jun 10 15:46:07 2014 +0200 fix create voterList --- .../java/org/chorem/pollen/services/service/VoterListService.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pollen-services/src/main/java/org/chorem/pollen/services/service/VoterListService.java b/pollen-services/src/main/java/org/chorem/pollen/services/service/VoterListService.java index 99af926..868f2b0 100644 --- a/pollen-services/src/main/java/org/chorem/pollen/services/service/VoterListService.java +++ b/pollen-services/src/main/java/org/chorem/pollen/services/service/VoterListService.java @@ -415,14 +415,14 @@ public class VoterListService extends PollenServiceSupport { // get all used names - for (VoterList voterList1 : existingVoterLists) { + for (VoterList oneVoterList : existingVoterLists) { if (voterListExists && - voterList1.getTopiaId().equals(voterList.getEntityId())) { + oneVoterList.getTopiaId().equals(voterList.getEntityId())) { continue; } - voterListNames.add(voterList.getName()); + voterListNames.add(oneVoterList.getName()); } -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.
participants (1)
-
chorem.org scm