]> git.mxchange.org Git - jcustomer-core.git/commitdiff
Auto-formatted whole project
authorRoland Haeder <roland@mxchange.org>
Fri, 9 Oct 2015 19:39:25 +0000 (21:39 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 9 Oct 2015 19:39:25 +0000 (21:39 +0200)
src/org/mxchange/jshopcore/model/basket/Basket.java
src/org/mxchange/jshopcore/model/basket/items/BaseItem.java
src/org/mxchange/jshopcore/model/customer/CustomerUtils.java

index 28d1eeb2735d84bf428598fc15b48c48b9b79068..d2e9883541581c2112aeceef67442868a1ab3954 100644 (file)
@@ -32,6 +32,7 @@ public interface Basket<T extends AddableBasketItem> extends Serializable {
         * Adds given item instance to this basket
         * <p>
         * @param item Item instance to add
+        * <p>
         * @throws org.mxchange.jshopcore.exceptions.BasketItemAlreadyAddedException
         * If the item instance has already been added
         */
@@ -68,6 +69,7 @@ public interface Basket<T extends AddableBasketItem> extends Serializable {
         * item's id.
         * <p>
         * @param item Item instance to check
+        * <p>
         * @return Whether the given item has been found
         */
        public boolean isAdded (final T item);
index f7fb19963b5ce65ba48c558fbf8df6b6c0c69781..408f87c64b9322449f510271db2e736098566bad 100644 (file)
@@ -68,8 +68,8 @@ public abstract class BaseItem implements AddableBasketItem, Comparable<AddableB
                AddableBasketItem item = (AddableBasketItem) object;
 
                // Item id and type must be the same
-               return ((Objects.equals(item.getItemProduct().getProductId(), this.getItemProduct().getProductId()))
-                               && (Objects.equals(item.getItemType(), this.getItemType())));
+               return ((Objects.equals(item.getItemProduct().getProductId(), this.getItemProduct().getProductId())) &&
+                               (Objects.equals(item.getItemType(), this.getItemType())));
        }
 
        @Override
index e3e5cd71fb78e2915b73625761d87a3cd9726bf8..1ef7cfb1545eb146f21e45dde5b6b8a5552e757e 100644 (file)
@@ -42,7 +42,9 @@ public class CustomerUtils extends BaseFrameworkSystem {
         * Generates an unique customer number by checking is existence
         * <p>
         * @param em Entity manager instance
+        * <p>
         * @return Generated customer number (not used before)
+        * <p>
         * @throws java.sql.SQLException If any SQL error occured
         */
        public static String generateCustomerNumber (final EntityManager em) throws SQLException {
@@ -94,6 +96,7 @@ public class CustomerUtils extends BaseFrameworkSystem {
         * <p>
         * @param em Entity manager instance
         * @param customer Customer instance
+        * <p>
         * @return An unique access key
         */
        public static String generateAccessKey (final EntityManager em, final Customer customer) {