continue;
case PROCESS_BREAK:
return false;
}
VoteResult result = (VoteResult) response.getValue();
totalPositiveVotes += result.getPositiveVotes();
totalNegativeVotes += result.getNegativeVotes();
}
boolean voteResult = (totalNegativeVotes == 0 && totalPositiveVotes > 0);
if (decree instanceof TwoPhaseVotingAdapter.TwoPhaseWrapper) {