From 7e8c7dfcbffff8e12bf85b0101a1b0ce92d17e43 Mon Sep 17 00:00:00 2001 From: celestar Date: Sat, 23 Aug 2008 09:31:53 +0000 Subject: (svn r14137) -Codechange: Remove a now unused member of CargoPacket --- src/cargopacket.cpp | 11 ----------- src/cargopacket.h | 2 -- 2 files changed, 13 deletions(-) diff --git a/src/cargopacket.cpp b/src/cargopacket.cpp index 244463977..e50532376 100644 --- a/src/cargopacket.cpp +++ b/src/cargopacket.cpp @@ -274,14 +274,3 @@ void CargoList::InvalidateCache() source = (*packets.begin())->source; } -/** Restore an array of cargo packets from a backup - * The end of the row should be marked by an invalid packet - */ -void CargoPacket::RestoreBackup() const -{ - for (const CargoPacket *cargo = this; cargo->IsValid(); cargo++) { - CargoPacket *dest = GetCargoPacket(cargo->index); - assert(!dest->IsValid()); - memcpy(dest, cargo, sizeof(CargoPacket)); - } -} diff --git a/src/cargopacket.h b/src/cargopacket.h index 7731228ff..12014d3fd 100644 --- a/src/cargopacket.h +++ b/src/cargopacket.h @@ -56,8 +56,6 @@ struct CargoPacket : PoolItem { * @return true if and only if days_in_transit and source_xy are equal */ bool SameSource(const CargoPacket *cp) const; - - void RestoreBackup() const; }; /** -- cgit v1.2.3-54-g00ecf