diff --git a/source/birchwood/client/client.d b/source/birchwood/client/client.d index 09b87a0..0d33aa7 100644 --- a/source/birchwood/client/client.d +++ b/source/birchwood/client/client.d @@ -186,9 +186,6 @@ public class Client : Thread import std.stdio; writeln("Support stuff: ", commandReply.getKVPairs()); - - testing(commandReply.getKVPairs()); - /* Fetch and parse the received key-value pairs */ string[string] receivedKV = commandReply.getKVPairs(); foreach(string key; receivedKV.keys()) @@ -200,22 +197,6 @@ public class Client : Thread } } - private string[string] attrs; - private void testing(string[string] newData) - { - foreach(string key; newData.keys()) - { - attrs[key] = newData[key]; - } - - foreach(string key; attrs.keys()) - { - logger.debug_("Attribute name:", key); - logger.debug_("Attribute value:", attrs[key]); - } - } - - /** * Joins the requested channel *