Changeset 14 for profile


Ignore:
Timestamp:
04/28/20 12:56:46 (4 years ago)
Author:
bart
Message:

Release 1.4.0

Location:
profile
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • profile/pom.xml

    r13 r14  
    66        <groupId>geniusweb</groupId>
    77        <artifactId>profile</artifactId>
    8         <version>1.3.1</version>
     8        <version>1.4.0</version>
    99        <packaging>jar</packaging>
    1010
     
    3131                        <groupId>geniusweb</groupId>
    3232                        <artifactId>issuevalue</artifactId>
    33                         <version>1.3.1</version>
     33                        <version>1.4.0</version>
    3434                </dependency>
    3535                <dependency>
    3636                        <groupId>geniusweb</groupId>
    3737                        <artifactId>references</artifactId>
    38                         <version>1.3.1</version>
     38                        <version>1.4.0</version>
    3939                </dependency>
    4040
  • profile/src/main/java/geniusweb/profile/utilityspace/LinearAdditiveUtilitySpace.java

    r10 r14  
    8484                if (utils.values().contains(null)) {
    8585                        throw new NullPointerException(
    86                                         "One of the ValueSetUtilities is null");
     86                                        "One of the ValueSetUtilities in issueUtilitiesis null:"
     87                                                        + utils);
    8788                }
    8889                if (weights.values().contains(null)) {
  • profile/src/main/java/geniusweb/profile/utilityspace/NumberValueSetUtilities.java

    r9 r14  
    5151                if (lowValue == null || highValue == null || lowUtility == null
    5252                                || 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");
    5455                }
    5556                if (!isInZeroOne(lowUtility)) {
Note: See TracChangeset for help on using the changeset viewer.