X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=application%2Fcity%2Fclasses%2Fclass_BaseCitySystem.php;fp=application%2Fcity%2Fclasses%2Fclass_BaseCitySystem.php;h=3dd741030a26862e4d84b02d097671dce4f1e741;hb=506df2a134d779bf384434de4b021bae675cc003;hp=f52a55a892a253ea44d8995a2ac89788282efe15;hpb=57d72a25f2659b5a3498cc6bd0bb2f2816d36210;p=city.git diff --git a/application/city/classes/class_BaseCitySystem.php b/application/city/classes/class_BaseCitySystem.php index f52a55a..3dd7410 100644 --- a/application/city/classes/class_BaseCitySystem.php +++ b/application/city/classes/class_BaseCitySystem.php @@ -63,28 +63,6 @@ class BaseCitySystem extends BaseFrameworkSystem { protected final function setCityInstance (CityHelper $cityInstance) { $this->cityInstance = $cityInstance; } - - /** - * "Getter" for a printable state name - * - * @return $stateName Name of the city's state in a printable format - */ - public final function getPrintableState () { - // Default is 'null' - $stateName = 'null'; - - // Get the state instance - $stateInstance = $this->getStateInstance(); - - // Is it an instance of Stateable? - if ($stateInstance instanceof Stateable) { - // Then use that state name - $stateName = $stateInstance->getStateName(); - } // END - if - - // Return result - return $stateName; - } } // [EOF]