- Timestamp:
- 10/06/20 13:12:20 (4 years ago)
- Location:
- voting
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
voting/pom.xml
r23 r24 6 6 <groupId>geniusweb</groupId> 7 7 <artifactId>voting</artifactId> 8 <version>1.5. 2</version> <!-- must equal ${geniusweb.version} -->8 <version>1.5.3</version> <!-- must equal ${geniusweb.version} --> 9 9 <packaging>jar</packaging> 10 10 … … 17 17 <passwd>${env.ARTIFACTORY_PASS}</passwd> 18 18 <jackson-2-version>2.9.10</jackson-2-version> 19 <geniusweb.version>1.5. 2</geniusweb.version>19 <geniusweb.version>1.5.3</geniusweb.version> 20 20 </properties> 21 21 … … 156 156 <groupId>org.apache.maven.plugins</groupId> 157 157 <artifactId>maven-javadoc-plugin</artifactId> 158 <version> 2.10.1</version>158 <version>3.2.0</version> 159 159 <executions> 160 160 <execution> … … 163 163 <goal>jar</goal> 164 164 </goals> 165 <configuration>166 <additionalparam>${javadoc.opts}</additionalparam>167 <additionalparam>-Xdoclint:none</additionalparam>168 </configuration>169 165 </execution> 170 166 </executions> -
voting/src/main/java/geniusweb/voting/CollectedVotes.java
r22 r24 176 176 177 177 /** 178 * @param voteList 178 * @param voteList list of all {@link Vote}s 179 179 * @return all parties that did a vote 180 180 */ -
voting/src/main/java/geniusweb/voting/VotingEvaluator.java
r21 r24 16 16 * 17 17 * Implementations should be immutable and not serialize internal variables (eg 18 * 19 * @JsonIgnore them). 18 * @JsonIgnore them). 20 19 */ 21 20 @JsonAutoDetect(fieldVisibility = Visibility.ANY, getterVisibility = Visibility.NONE, setterVisibility = Visibility.NONE, isGetterVisibility = Visibility.NONE) -
voting/src/main/java/geniusweb/voting/votingevaluators/LargestAgreementsLoop.java
r21 r24 88 88 } 89 89 90 /** 91 * WARNING you must manually set prime=37 here to fix collision with 92 * {@link LargestAgreement}. 93 */ 90 94 @Override 91 95 public int hashCode() { 92 final int prime = 3 1;96 final int prime = 37; 93 97 int result = 1; 94 98 result = prime * result
Note:
See TracChangeset
for help on using the changeset viewer.