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

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

index 4548c9e395f755dbc486275d0345202f4458918e..74f914a59a920db444c51a3d22479c2d9183a3e2 100644 (file)
@@ -41,7 +41,7 @@ public class Categories implements Serializable {
         * @return Comparison value
         */
        public static int compare (final Category category1, final Category category2) {
-               // Check euqality, then at least first must be given
+               // Check equality, then at least first must be given
                if (Objects.equals(category1, category2)) {
                        // Both are same
                        return 0;
index 1f0ce3226e75ccfecf774dd10d517037b58f5da9..ca5e3aaf82a18a8b3d118c8ac14e79e26fe6eda9 100644 (file)
@@ -41,7 +41,7 @@ public class Products implements Serializable {
         * @return Comparison value
         */
        public static int compare (final Product product1, final Product product2) {
-               // Check euqality, then at least first must be given
+               // Check equality, then at least first must be given
                if (Objects.equals(product1, product2)) {
                        // Both are same
                        return 0;