diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-07-23 14:46:54 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-07-23 14:46:54 -0700 |
commit | 8641cb4591d2b8385a661ea743833392ef45ff8b (patch) | |
tree | 8e032e94d0baa8daf5b6cbd4fe54ef0406c5f691 /lib/queuehandler.php | |
parent | a7ad37f83fcdf611f9a65d38b35ac1874979198c (diff) | |
parent | 0dab5f58723cba8b5915c694a8200e242cc9ec02 (diff) |
Merge branch '0.8.x' into 0.9.x
Diffstat (limited to 'lib/queuehandler.php')
-rw-r--r-- | lib/queuehandler.php | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/queuehandler.php b/lib/queuehandler.php index c2ff10f32..f11e5bd90 100644 --- a/lib/queuehandler.php +++ b/lib/queuehandler.php @@ -29,7 +29,6 @@ define('QUEUE_HANDLER_HIT_IDLE', 0); class QueueHandler extends Daemon { - var $_id = 'generic'; function __construct($id=null, $daemonize=true) { @@ -55,16 +54,6 @@ class QueueHandler extends Daemon return strtolower($this->class_name().'.'.$this->get_id()); } - function get_id() - { - return $this->_id; - } - - function set_id($id) - { - $this->_id = $id; - } - function transport() { return null; |