Remove redundant property from ImageRequest

Summary:
Changelog: [internal]

`moved_`, introduced in D8526571 (979ea2094e), no longer servers its purpose.
Let's remove it.

Reviewed By: JoshuaGross

Differential Revision: D24475715

fbshipit-source-id: 162d1fc4ed3d4a67885d8f140904dd80763dcaa0
This commit is contained in:
Samuel Susla 2020-10-22 17:50:17 -07:00 коммит произвёл Facebook GitHub Bot
Родитель 16044b3c2a
Коммит bfbd841f38
2 изменённых файлов: 0 добавлений и 6 удалений

Просмотреть файл

@ -96,11 +96,6 @@ class ImageRequest final {
* Function we can call to cancel image request (see destructor).
*/
std::function<void(void)> cancelRequest_;
/*
* Indicates that the object was moved and hence cannot be used anymore.
*/
bool moved_{false};
};
} // namespace react

Просмотреть файл

@ -21,7 +21,6 @@ ImageRequest::ImageRequest(ImageRequest &&other) noexcept
: imageSource_(std::move(other.imageSource_)),
telemetry_(std::move(other.telemetry_)),
coordinator_(std::move(other.coordinator_)) {
other.moved_ = true;
other.coordinator_ = nullptr;
other.cancelRequest_ = nullptr;
other.telemetry_ = nullptr;