This method is already implemented.
authorRoland Haeder <roland@mxchange.org>
Sun, 20 Sep 2015 17:52:39 +0000 (19:52 +0200)
committerRoland Haeder <roland@mxchange.org>
Sun, 20 Sep 2015 17:52:39 +0000 (19:52 +0200)
Signed-off-by: Roland Haeder <roland@mxchange.org>
application/city/classes/class_BaseCitySystem.php

index f52a55a892a253ea44d8995a2ac89788282efe15..3dd741030a26862e4d84b02d097671dce4f1e741 100644 (file)
@@ -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]