]> git.mxchange.org Git - jcontacts-business-core.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Thu, 23 Jun 2022 11:09:37 +0000 (13:09 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 23 Jun 2022 11:09:37 +0000 (13:09 +0200)
- tpzo fixed

Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jcontactsbusiness/model/basicdata/BasicDataUtils.java
src/org/mxchange/jcontactsbusiness/model/branchoffice/BranchOffices.java
src/org/mxchange/jcontactsbusiness/model/department/Departments.java
src/org/mxchange/jcontactsbusiness/model/employee/Employees.java
src/org/mxchange/jcontactsbusiness/model/jobposition/JobPositions.java

index c8ca62f2f3b39f640e7d2e58ccf79b8426a42e54..daa38c819e4845cc655218b516821ca0ca42f8bf 100644 (file)
@@ -41,7 +41,7 @@ public class BasicDataUtils implements Serializable {
         * @return Comparison value
         */
        public static int compare (final BasicData basicData1, final BasicData basicData2) {
-               // Check euqality, then at least first must be given
+               // Check equality, then at least first must be given
                if (Objects.equals(basicData1, basicData2)) {
                        // Both are same
                        return 0;
index 2742a5e268c7d3b47afcbbec447c4779de5f3e8c..8b259913e1bff9ebb5180bda7045a76e98d3b183 100644 (file)
@@ -42,7 +42,7 @@ public class BranchOffices implements Serializable {
         * @return Comparison value
         */
        public static int compare (final BranchOffice branchOffice1, final BranchOffice branchOffice2) {
-               // Check euqality, then at least first must be given
+               // Check equality, then at least first must be given
                if (Objects.equals(branchOffice1, branchOffice2)) {
                        // Both are same
                        return 0;
index 6eae84296ddd22f0993b543a25b52364a2b2736e..5859918e747000acb459df8eb0d204d23d1da697 100644 (file)
@@ -44,7 +44,7 @@ public class Departments implements Serializable {
         * @return Comparison value
         */
        public static int compare (final Department department1, final Department department2) {
-               // Check euqality, then at least first must be given
+               // Check equality, then at least first must be given
                if (Objects.equals(department1, department2)) {
                        // Both are same
                        return 0;
index 46a74348b6af5dd0fef537ac4fe23f5b2568739a..6e93e4cd49df33c8c5a03c90df6670e3cd667abc 100644 (file)
@@ -42,7 +42,7 @@ public class Employees implements Serializable {
         * @return Comparison value
         */
        public static int compare (final Employable employable1, final Employable employable2) {
-               // Check euqality, then at least first must be given
+               // Check equality, then at least first must be given
                if (Objects.equals(employable1, employable2)) {
                        // Both are same
                        return 0;
index da73b4542881987ddfafbadb4b92303e7b8b02da..7a93650ba646d6ba90f8eab5484bfd4e528a7e5e 100644 (file)
@@ -41,7 +41,7 @@ public class JobPositions implements Serializable {
         * @return Comparison value
         */
        public static int compare (final HireableJobPosition jobPosition1, final HireableJobPosition jobPosition2) {
-               // Check euqality, then at least first must be given
+               // Check equality, then at least first must be given
                if (Objects.equals(jobPosition1, jobPosition2)) {
                        // Both are same
                        return 0;