Removed forgotten debug print.
authorEdouard Tisserant <edouard@beremiz.fr>
Fri, 15 Mar 2024 09:42:30 +0100
changeset 3916 6ca1adad3f0e
parent 3914 b2aa31f3a0ce
child 3917 43e7fd0cb88e
Removed forgotten debug print.
controls/DebugVariablePanel/RingBuffer.py
--- a/controls/DebugVariablePanel/RingBuffer.py	Fri Mar 15 09:20:11 2024 +0100
+++ b/controls/DebugVariablePanel/RingBuffer.py	Fri Mar 15 09:42:30 2024 +0100
@@ -44,7 +44,6 @@
         note: only when this function is called, is an O(size) performance hit incurred,
         and this cost is amortized over the whole padding space
         """
-        print('compacting')
         self.buffer[:self.count] = self.view
         self.cursor -= self.size