]> git.mxchange.org Git - jphone-core.git/blobdiff - src/org/mxchange/jphone/phonenumbers/landline/LandLineNumber.java
removed calendar argument as the EJB should take care of this
[jphone-core.git] / src / org / mxchange / jphone / phonenumbers / landline / LandLineNumber.java
index 6a18fc09ada9aa43a4504929635475b9ef6ec721..52d89327cce37df3999ae3f23759e2b632a5e070 100644 (file)
@@ -84,15 +84,20 @@ public class LandLineNumber implements DialableLandLineNumber {
        @Column (name = "phone_number", nullable = false)
        private Long phoneNumber;
 
+       /**
+        * Default constructor
+        */
+       public LandLineNumber () {
+       }
+
        /**
         * Constructor with country instance, area code and number
         * <p>
         * @param phoneCountry      Country instance
         * @param phoneAreaCode     Phone area code
         * @param phoneNumber       Phone number
-        * @param phoneEntryCreated When this entry has been created
         */
-       public LandLineNumber (final Country phoneCountry, final Integer phoneAreaCode, final Long phoneNumber, final Calendar phoneEntryCreated) {
+       public LandLineNumber (final Country phoneCountry, final Integer phoneAreaCode, final Long phoneNumber) {
                // Call default constructor
                this();
 
@@ -100,13 +105,6 @@ public class LandLineNumber implements DialableLandLineNumber {
                this.phoneCountry = phoneCountry;
                this.phoneAreaCode = phoneAreaCode;
                this.phoneNumber = phoneNumber;
-               this.phoneEntryCreated = phoneEntryCreated;
-       }
-
-       /**
-        * Default constructor
-        */
-       public LandLineNumber () {
        }
 
        @Override