From 92f9ed465e3516c9039b64a5192bfd0daed195f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Thu, 14 Jul 2016 19:46:44 +0200 Subject: [PATCH] Removed two unused locks from StateMonitor --- src/octoprint/printer/standard.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/octoprint/printer/standard.py b/src/octoprint/printer/standard.py index e758d5ee..2400a12f 100644 --- a/src/octoprint/printer/standard.py +++ b/src/octoprint/printer/standard.py @@ -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)