player/Control: remove Lock(), Unlock()
This commit is contained in:
parent
0e0bc7976f
commit
287cff40b9
|
@ -246,20 +246,6 @@ public:
|
|||
thread.Start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Locks the object.
|
||||
*/
|
||||
void Lock() const noexcept {
|
||||
mutex.lock();
|
||||
}
|
||||
|
||||
/**
|
||||
* Unlocks the object.
|
||||
*/
|
||||
void Unlock() const noexcept {
|
||||
mutex.unlock();
|
||||
}
|
||||
|
||||
/**
|
||||
* Signals the object. The object should be locked prior to
|
||||
* calling this function.
|
||||
|
|
Loading…
Reference in New Issue