Removed two unused locks from StateMonitor

This commit is contained in:
Gina Häußge 2016-07-14 19:46:44 +02:00
parent 0a8a7ba589
commit 92f9ed465e

View file

@ -921,8 +921,6 @@ class StateMonitor(object):
self._change_event = threading.Event()
self._state_lock = threading.Lock()
self._progress_lock = threading.Lock()
self._log_lock = threading.Lock()
self._message_lock = threading.Lock()
self._last_update = time.time()
self._worker = threading.Thread(target=self._work)