From: Roland Häder Date: Wed, 19 Oct 2022 11:48:38 +0000 (+0200) Subject: Changed: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3a3336fa4c7f1d9ef73b30eaf78923f29d30273c;p=jproduct-core.git Changed: - updated reference from Comparables to ComparableUtils Signed-off-by: Roland Häder --- diff --git a/src/org/mxchange/jproduct/model/category/ProductCategory.java b/src/org/mxchange/jproduct/model/category/ProductCategory.java index b5c51e5..418b6ec 100644 --- a/src/org/mxchange/jproduct/model/category/ProductCategory.java +++ b/src/org/mxchange/jproduct/model/category/ProductCategory.java @@ -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; diff --git a/src/org/mxchange/jproduct/model/product/GenericProduct.java b/src/org/mxchange/jproduct/model/product/GenericProduct.java index 0aca37c..84a7294 100644 --- a/src/org/mxchange/jproduct/model/product/GenericProduct.java +++ b/src/org/mxchange/jproduct/model/product/GenericProduct.java @@ -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;