A lot more old methods deprecated and already deprecated methods removed
[shipsimu.git] / application / ship-simu / main / ships / passenger / class_PassengerShip.php
index cbe0a2225b5cc20dbd45bbeaaa1e5cde606a5941..f2ac31a9b143876deacba27359dbcd29213e470c 100644 (file)
@@ -22,7 +22,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-class PassengerShip extends BaseShip implements ConstructableShip, LimitableObject {
+class PassengerShip extends BaseShip implements ConstructableShip {
        // Konstruktor
        protected function __construct () {
                // Eltern-Kontruktor aufrufen
@@ -121,20 +121,6 @@ class PassengerShip extends BaseShip implements ConstructableShip, LimitableObje
                // Anzahl zurueckliefern
                return $numBeds;
        }
-
-       /**
-        * Reduces the volume of a processed object.
-        *
-        * @param       $limitInstance  An instance to ObjectLimits which holds
-        *                      attribute names that we want to include in the processing phase.
-        *                      Other attributes except $uniqueID and $realClass will be ignored
-        *                      and keept out.
-        * @return      void
-        */
-       function limitObject (ObjectLimits $limitInstance) {
-               // Work in progress
-               $this->partialStub("Unfinished method called.");
-       }
 }
 
 // [EOF]