From 8252ecb385a745b55b0733a9180270d4bd298da4 Mon Sep 17 00:00:00 2001
From: Loic Guegan <manzerbredes@mailbox.org>
Date: Tue, 6 Sep 2022 15:46:32 +0200
Subject: [PATCH] Remove useless code

---
 esds/node.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/esds/node.py b/esds/node.py
index 1cd5a1a..7fc62dc 100644
--- a/esds/node.py
+++ b/esds/node.py
@@ -200,9 +200,7 @@ class Node:
         ack=None
         while True:
             ack=self.rqueue.get() # Wait for simulator acknowledgments
-            if ack[0] == "plugin_notify":
-                self.plugin_notify(ack[1],ack[2]) # TODO: what is ack_types received before "plugin_notify" ?
-            elif ack[0] not in ack_types:
+            if ack[0] not in ack_types:
                 ack_buffer.append(ack)
             else:
                 break