Remove some testing/debugging code

This commit is contained in:
Luke Fitzgerald 2010-07-26 12:25:23 -07:00
parent 742b302739
commit 3c1d7d81cf
2 changed files with 2 additions and 6 deletions

View File

@ -100,8 +100,4 @@ class Phergie_Plugin_Statusnet extends Phergie_Plugin_Abstract {
}
}
}
public function onTick() {
echo "\nTICK!\n";
}
}

View File

@ -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";
}
/**