]> git.mxchange.org Git - jproduct-core.git/commitdiff
Changed:
authorRoland Häder <roland@mxchange.org>
Wed, 19 Oct 2022 11:48:38 +0000 (13:48 +0200)
committerRoland Häder <roland@mxchange.org>
Wed, 19 Oct 2022 11:48:38 +0000 (13:48 +0200)
- updated reference from Comparables to ComparableUtils

Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jproduct/model/category/ProductCategory.java
src/org/mxchange/jproduct/model/product/GenericProduct.java

index b5c51e5f963e4b0bf15910727091b3876f6abc74..418b6ec1364bbfaa514b3d8794164edea73de64a 100644 (file)
@@ -34,7 +34,7 @@ import javax.persistence.Temporal;
 import javax.persistence.TemporalType;
 import javax.persistence.Transient;
 import org.apache.commons.lang3.StringUtils;
-import org.mxchange.jcoreutils.comparable.Comparables;
+import org.mxchange.jcoreutils.comparable.ComparableUtils;
 import org.mxchange.jproduct.model.utils.CategoryUtils;
 
 /**
@@ -156,7 +156,7 @@ public class ProductCategory implements Category {
                };
 
                // Check all values
-               final int comparison = Comparables.checkAll(comparators);
+               final int comparison = ComparableUtils.checkAll(comparators);
 
                // Return value
                return comparison;
index 0aca37c01602f79a4acad4052839b0ee4ce9902e..84a729453d9e8b19ce08645936836a9926b6464f 100644 (file)
@@ -42,7 +42,7 @@ import org.apache.commons.lang3.StringUtils;
 import org.mxchange.jcontactsbusiness.model.basicdata.BasicData;
 import org.mxchange.jcontactsbusiness.model.basicdata.BusinessBasicData;
 import org.mxchange.jcontactsbusiness.model.utils.BasicDataUtils;
-import org.mxchange.jcoreutils.comparable.Comparables;
+import org.mxchange.jcoreutils.comparable.ComparableUtils;
 import org.mxchange.jcoreutils.number.SafeNumberUtils;
 import org.mxchange.jproduct.model.category.Category;
 import org.mxchange.jproduct.model.category.ProductCategory;
@@ -319,7 +319,7 @@ public class GenericProduct implements Product {
                };
 
                // Check all values
-               final int comparison = Comparables.checkAll(comparators);
+               final int comparison = ComparableUtils.checkAll(comparators);
 
                // Return value
                return comparison;