refacto: rename TallyNormalized → NormalizedTally

pull/9/head
Dominique Merle 3 years ago
parent 169c5fc33e
commit 332614d2ea

@ -3,9 +3,9 @@ package fr.mieuxvoter.mj;
import java.math.BigInteger;
import java.security.InvalidParameterException;
public class TallyNormalized extends Tally implements TallyInterface {
public class NormalizedTally extends Tally implements TallyInterface {
public TallyNormalized(ProposalTallyInterface[] proposalsTallies) {
public NormalizedTally(ProposalTallyInterface[] proposalsTallies) {
super(proposalsTallies);
Integer amountOfProposals = getAmountOfProposals();

@ -75,7 +75,7 @@ class MajorityJudgmentDeliberatorTest {
if ("StaticDefault".equalsIgnoreCase(mode)) {
tally = new TallyWithDefaultGrade(tallies, amountOfParticipants, datum.getInt("default"));
} else if ("Normalized".equalsIgnoreCase(mode)) {
tally = new TallyNormalized(tallies);
tally = new NormalizedTally(tallies);
} else {
tally = new Tally(tallies, amountOfParticipants);
}

Loading…
Cancel
Save