- Timestamp:
- 04/28/20 12:56:46 (5 years ago)
- Location:
- profile
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
profile/pom.xml
r13 r14 6 6 <groupId>geniusweb</groupId> 7 7 <artifactId>profile</artifactId> 8 <version>1. 3.1</version>8 <version>1.4.0</version> 9 9 <packaging>jar</packaging> 10 10 … … 31 31 <groupId>geniusweb</groupId> 32 32 <artifactId>issuevalue</artifactId> 33 <version>1. 3.1</version>33 <version>1.4.0</version> 34 34 </dependency> 35 35 <dependency> 36 36 <groupId>geniusweb</groupId> 37 37 <artifactId>references</artifactId> 38 <version>1. 3.1</version>38 <version>1.4.0</version> 39 39 </dependency> 40 40 -
profile/src/main/java/geniusweb/profile/utilityspace/LinearAdditiveUtilitySpace.java
r10 r14 84 84 if (utils.values().contains(null)) { 85 85 throw new NullPointerException( 86 "One of the ValueSetUtilities is null"); 86 "One of the ValueSetUtilities in issueUtilitiesis null:" 87 + utils); 87 88 } 88 89 if (weights.values().contains(null)) { -
profile/src/main/java/geniusweb/profile/utilityspace/NumberValueSetUtilities.java
r9 r14 51 51 if (lowValue == null || highValue == null || lowUtility == null 52 52 || highUtility == null) { 53 throw new NullPointerException("arguments must be non-null"); 53 throw new NullPointerException( 54 "arguments lowValue, lowUtility, highValue and highUtility must be non-null"); 54 55 } 55 56 if (!isInZeroOne(lowUtility)) {
Note:
See TracChangeset
for help on using the changeset viewer.