summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorLuke Fitzgerald <lw.fitzgerald@googlemail.com>2010-07-26 12:25:23 -0700
committerLuke Fitzgerald <lw.fitzgerald@googlemail.com>2010-07-26 12:25:23 -0700
commit3c1d7d81cf76fbd358885ed4ec540871236072f8 (patch)
tree03bf9021d6303887bb083ed7c7c6aec1108af304 /plugins
parent742b302739bf31979b3c7f6b41136297264b86d3 (diff)
Remove some testing/debugging code
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Irc/extlib/phergie/Phergie/Plugin/Statusnet.php4
-rw-r--r--plugins/Irc/ircmanager.php4
2 files changed, 2 insertions, 6 deletions
diff --git a/plugins/Irc/extlib/phergie/Phergie/Plugin/Statusnet.php b/plugins/Irc/extlib/phergie/Phergie/Plugin/Statusnet.php
index 3da5fdf4f..41995ee35 100644
--- a/plugins/Irc/extlib/phergie/Phergie/Plugin/Statusnet.php
+++ b/plugins/Irc/extlib/phergie/Phergie/Plugin/Statusnet.php
@@ -100,8 +100,4 @@ class Phergie_Plugin_Statusnet extends Phergie_Plugin_Abstract {
}
}
}
-
- public function onTick() {
- echo "\nTICK!\n";
- }
}
diff --git a/plugins/Irc/ircmanager.php b/plugins/Irc/ircmanager.php
index 933cc0387..8042ae24c 100644
--- a/plugins/Irc/ircmanager.php
+++ b/plugins/Irc/ircmanager.php
@@ -64,6 +64,8 @@ class IrcManager extends ImManager {
}
}
+
+
/**
* Idle processing for io manager's execution loop.
* Send keepalive pings to server.
@@ -72,9 +74,7 @@ class IrcManager extends ImManager {
*/
public function idle() {
// Call Phergie's doTick methods if necessary
- echo "BEGIN IDLE\n";
$this->conn->handleEvents();
- echo "END IDLE\n";
}
/**