diff --git a/headers/private/shared/AutoLocker.h b/headers/private/shared/AutoLocker.h index 112521881b..9baa7aa7a5 100644 --- a/headers/private/shared/AutoLocker.h +++ b/headers/private/shared/AutoLocker.h @@ -158,14 +158,6 @@ public: return *this; } - inline ThisClass& operator=(ThisClass& otherLocker) - { - fLockable = otherLocker.fLockable; - fLocked = otherLocker.fLocked; - otherLocker.Detach(); - return &this; - } - inline bool IsLocked() const { return fLocked; } inline operator bool() const { return fLocked; }