From b7599120178153b8b1f9a84e212e9ccc48e288e4 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Thu, 15 Oct 2015 09:41:29 +0200 Subject: [PATCH] =?utf8?q?Cleanup=20through=20inspection=20Signed-off-by:R?= =?utf8?q?oland=20H=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/org/mxchange/jcountry/data/Country.java | 32 ++++++++++----------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/org/mxchange/jcountry/data/Country.java b/src/org/mxchange/jcountry/data/Country.java index 8a399d0..249b0e2 100644 --- a/src/org/mxchange/jcountry/data/Country.java +++ b/src/org/mxchange/jcountry/data/Country.java @@ -30,91 +30,91 @@ public interface Country extends Serializable { *

* @return Dial number without prefix */ - public Short getCountryPhoneCode (); + Short getCountryPhoneCode (); /** * Setter for country code (example: 49 for Germany, 63 for Philippines) *

* @param phoneCountryCode Country code */ - public void setCountryPhoneCode (final Short phoneCountryCode); + void setCountryPhoneCode (final Short phoneCountryCode); /** * Getter for id number *

* @return Id number */ - public Long getCountryId (); + Long getCountryId (); /** * Setter for id number *

* @param countryId Id number */ - public void setCountryId (final Long countryId); + void setCountryId (final Long countryId); /** * Getter for 2-characters country code *

* @return Country code */ - public String getCountryCode (); + String getCountryCode (); /** * Setter for 2-characters country code *

* @param countryCode Country code */ - public void setCountryCode (final String countryCode); + void setCountryCode (final String countryCode); /** * Getter for local dial prefix *

* @return Local dial prefix */ - public String getCountryLocalDialPrefix (); + String getCountryLocalDialPrefix (); /** * Setter for local dial prefix *

* @param countryLocalDialPrefix Local dial prefix */ - public void setCountryLocalDialPrefix (final String countryLocalDialPrefix); + void setCountryLocalDialPrefix (final String countryLocalDialPrefix); /** * Getter for abroad dial prefix *

* @return Abroad dial prefix */ - public String getCountryAbroadDialPrefix (); + String getCountryAbroadDialPrefix (); /** * Setter for abroad dial prefix *

* @param countryAbroadDialPrefix Abroad dial prefix */ - public void setCountryAbroadDialPrefix (final String countryAbroadDialPrefix); + void setCountryAbroadDialPrefix (final String countryAbroadDialPrefix); /** * Getter for i18n key for country name *

* @return i18n key for country name */ - public String getCountryI18nkey (); + String getCountryI18nkey (); /** * Setter for i18n key for country name *

* @param countryI18nkey i18n key for country name */ - public void setCountryI18nkey (final String countryI18nkey); + void setCountryI18nkey (final String countryI18nkey); /** * Getter for whether the local dial prefix is required for local calls *

* @return Whether the local dial prefix is required */ - public Boolean getCountryIsLocalPrefixRequired (); + Boolean getCountryIsLocalPrefixRequired (); /** * Setter for whether the local dial prefix is required for local calls @@ -122,11 +122,11 @@ public interface Country extends Serializable { * @param countryIsLocalPrefixRequired Whether the local dial prefix is * required */ - public void setCountryIsLocalPrefixRequired (final Boolean countryIsLocalPrefixRequired); + void setCountryIsLocalPrefixRequired (final Boolean countryIsLocalPrefixRequired); @Override - public boolean equals (final Object object); + boolean equals (final Object object); @Override - public int hashCode (); + int hashCode (); } -- 2.39.5