]> git.mxchange.org Git - jfinancials-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/jfinancials/model/income/FinancialIncome.java
src/org/mxchange/jfinancials/model/receipt/FinancialReceipt.java
src/org/mxchange/jfinancials/model/receipt_item/FinancialReceiptItem.java

index c3d51998830ae92c383f3e912eff71fdddc4ae81..02dac71d63111d027a4c075f3a4301398f33d991 100644 (file)
@@ -35,7 +35,7 @@ import javax.persistence.Table;
 import javax.persistence.Temporal;
 import javax.persistence.TemporalType;
 import javax.persistence.Transient;
-import org.mxchange.jcoreutils.comparable.Comparables;
+import org.mxchange.jcoreutils.comparable.ComparableUtils;
 import org.mxchange.jfinancials.model.income.interval.FinancialInterval;
 import org.mxchange.jusercore.model.user.LoginUser;
 import org.mxchange.jusercore.model.user.User;
@@ -198,7 +198,7 @@ public class FinancialIncome implements BillableIncome {
                };
 
                // Check all values
-               final int comparison = Comparables.checkAll(comparators);
+               final int comparison = ComparableUtils.checkAll(comparators);
 
                // Return value
                return comparison;
index 0bd33f867052c1e39d0b22d727836aeb4b7ca0a5..951ba6046722f1fbc00b347846cc0bafa6688c5d 100644 (file)
@@ -46,7 +46,7 @@ import org.mxchange.jcontactsbusiness.model.employee.BusinessEmployee;
 import org.mxchange.jcontactsbusiness.model.employee.Employable;
 import org.mxchange.jcontactsbusiness.model.utils.BranchOfficeUtils;
 import org.mxchange.jcontactsbusiness.model.utils.EmployeeUtils;
-import org.mxchange.jcoreutils.comparable.Comparables;
+import org.mxchange.jcoreutils.comparable.ComparableUtils;
 import org.mxchange.jcoreutils.number.SafeNumberUtils;
 import org.mxchange.jproduct.model.payment.PaymentType;
 import org.mxchange.jusercore.model.user.LoginUser;
@@ -300,7 +300,7 @@ public class FinancialReceipt implements BillableReceipt {
                };
 
                // Check all values
-               final int comparison = Comparables.checkAll(comparators);
+               final int comparison = ComparableUtils.checkAll(comparators);
 
                // Return value
                return comparison;
index 044940782c9db687a6c5f0ecabca27f70e922f87..f4926789a0b19e3c89cc93e97d226a4c90164741 100644 (file)
@@ -38,7 +38,7 @@ import javax.persistence.Transient;
 import org.apache.commons.lang3.StringUtils;
 import org.mxchange.jcontactsbusiness.model.basicdata.BasicData;
 import org.mxchange.jcontactsbusiness.model.basicdata.BusinessBasicData;
-import org.mxchange.jcoreutils.comparable.Comparables;
+import org.mxchange.jcoreutils.comparable.ComparableUtils;
 import org.mxchange.jcoreutils.number.SafeNumberUtils;
 import org.mxchange.jfinancials.model.receipt.BillableReceipt;
 import org.mxchange.jfinancials.model.receipt.FinancialReceipt;
@@ -256,7 +256,7 @@ public class FinancialReceiptItem implements BillableReceiptItem {
                };
 
                // Check all values
-               final int comparison = Comparables.checkAll(comparators);
+               final int comparison = ComparableUtils.checkAll(comparators);
 
                // Return value
                return comparison;