From 08bdd4ccdcac40395980b848af32752e7084a90a Mon Sep 17 00:00:00 2001 From: brianc Date: Sun, 10 Oct 2010 22:44:58 -0500 Subject: [PATCH] query no longer holds circular reference to creator client --- lib/client.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/client.js b/lib/client.js index 11beedad..6eaa2fc9 100644 --- a/lib/client.js +++ b/lib/client.js @@ -63,7 +63,6 @@ p.disconnect = function() { p.query = function(text) { var query = new Query(); - query.client = this; query.text = text; this.queryQueue.push(query); this.pulseQueryQueue();