Remove unused code

This commit is contained in:
Benoit Blanchon
2024-08-23 15:28:44 +02:00
parent 386105be90
commit a2b09bfbd2

View File

@ -51,16 +51,6 @@ class ArrayData : public CollectionData {
array->removeElement(index, resources);
}
bool copyFrom(const ArrayData& src, ResourceManager* resources);
static bool copy(ArrayData* dst, const ArrayData* src,
ResourceManager* resources) {
if (!dst || !src)
return false;
return dst->copyFrom(*src, resources);
}
private:
iterator at(size_t index, const ResourceManager* resources) const;
};