Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 1572 → Rev 1573

/trunk/src/org/tela_botanica/del/client/utils/UtilitairesServiceResultat.java
398,7 → 398,10
if (!votesProtocoles.containsKey(idProtocoleVote)) {
votesProtocoles.put(idProtocoleVote, new HashMap<String, VoteProtocole>());
}
votesProtocoles.get(idProtocoleVote).put(vd.getContributeur(), vd);
// un seul vote par utilisateur - garde le premier pour ĂȘtre cohĂ©rent avec commun/Stats (PHP)
if (! votesProtocoles.get(idProtocoleVote).containsKey(vd.getContributeur())) {
votesProtocoles.get(idProtocoleVote).put(vd.getContributeur(), vd);
}
}
}