From: Roland Häder Date: Fri, 29 Apr 2016 10:10:51 +0000 (+0200) Subject: surpressed warnings that cannot be fixed anyway X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d0fd255ad89748feb1224e003ddff4cefd582424;p=pizzaservice-core.git surpressed warnings that cannot be fixed anyway --- diff --git a/src/org/mxchange/pizzaapplication/model/customer/PizzaCustomer.java b/src/org/mxchange/pizzaapplication/model/customer/PizzaCustomer.java index 95f0b3c..ecda560 100644 --- a/src/org/mxchange/pizzaapplication/model/customer/PizzaCustomer.java +++ b/src/org/mxchange/pizzaapplication/model/customer/PizzaCustomer.java @@ -228,11 +228,13 @@ public class PizzaCustomer implements Customer { } @Override + @SuppressWarnings ("ReturnOfDateField") public Calendar getCustomerCreated () { return this.customerCreated; } @Override + @SuppressWarnings ("AssignmentToDateFieldFromParameter") public void setCustomerCreated (final Calendar customerCreated) { this.customerCreated = customerCreated; } @@ -248,11 +250,13 @@ public class PizzaCustomer implements Customer { } @Override + @SuppressWarnings ("ReturnOfDateField") public Calendar getCustomerLastLocked () { return this.customerLastLocked; } @Override + @SuppressWarnings ("AssignmentToDateFieldFromParameter") public void setCustomerLastLocked (final Calendar customerLastLocked) { this.customerLastLocked = customerLastLocked; } @@ -288,11 +292,13 @@ public class PizzaCustomer implements Customer { } @Override + @SuppressWarnings ("ReturnOfDateField") public Calendar getCustomerUpdated () { return this.customerUpdated; } @Override + @SuppressWarnings ("AssignmentToDateFieldFromParameter") public void setCustomerUpdated (final Calendar customerUpdated) { this.customerUpdated = customerUpdated; }