aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2010-08-03 11:02:30 +0100
committerMatthew Wild <mwild1@gmail.com>2010-08-03 11:02:30 +0100
commita9cc14908561843f55293364b33e8c30aeb95d54 (patch)
treeae7163f25c7a5d0cd0d7b181189a00229dd53707 /core
parent37f77327fd3006f7c6698668e98ba192e069c426 (diff)
downloadprosody-a9cc14908561843f55293364b33e8c30aeb95d54.tar.gz
prosody-a9cc14908561843f55293364b33e8c30aeb95d54.zip
eventmanager: REMOVE!!!
Diffstat (limited to 'core')
-rw-r--r--core/eventmanager.lua27
1 files changed, 0 insertions, 27 deletions
diff --git a/core/eventmanager.lua b/core/eventmanager.lua
deleted file mode 100644
index 1f69c8e1..00000000
--- a/core/eventmanager.lua
+++ /dev/null
@@ -1,27 +0,0 @@
--- Prosody IM
--- Copyright (C) 2008-2010 Matthew Wild
--- Copyright (C) 2008-2010 Waqas Hussain
---
--- This project is MIT/X11 licensed. Please see the
--- COPYING file in the source package for more information.
---
-
-
-local t_insert = table.insert;
-local ipairs = ipairs;
-
-local events = _G.prosody.events;
-
-module "eventmanager"
-
-local event_handlers = {};
-
-function add_event_hook(name, handler)
- return events.add_handler(name, handler);
-end
-
-function fire_event(name, ...)
- return events.fire_event(name, ...);
-end
-
-return _M;