aboutsummaryrefslogtreecommitdiffstats
path: root/core/modulemanager.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2010-11-10 03:39:38 +0500
committerWaqas Hussain <waqas20@gmail.com>2010-11-10 03:39:38 +0500
commit67804ef1a34cba2c42ccf8324ad8fef8c04ddc47 (patch)
treede1b3d70afcf956438ca47d200659334565ef6a9 /core/modulemanager.lua
parente75ae6d76d77c2337f3dadfe667ecd517dbbad36 (diff)
downloadprosody-67804ef1a34cba2c42ccf8324ad8fef8c04ddc47.tar.gz
prosody-67804ef1a34cba2c42ccf8324ad8fef8c04ddc47.zip
componentmanager, hostmanager, modulemanager, mod_component: Got rid of the useless hosts[*].connected property.
Diffstat (limited to 'core/modulemanager.lua')
-rw-r--r--core/modulemanager.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua
index f5865a31..e1483d40 100644
--- a/core/modulemanager.lua
+++ b/core/modulemanager.lua
@@ -135,7 +135,6 @@ function load(host, module_name, config)
if not hosts[host] then
local create_component = _G.require "core.componentmanager".create_component;
hosts[host] = create_component(host);
- hosts[host].connected = false;
log("debug", "Created new component: %s", host);
end
hosts[host].modules = modulemap[host];