diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-11-10 03:39:38 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-11-10 03:39:38 +0500 |
commit | 67804ef1a34cba2c42ccf8324ad8fef8c04ddc47 (patch) | |
tree | de1b3d70afcf956438ca47d200659334565ef6a9 /core/modulemanager.lua | |
parent | e75ae6d76d77c2337f3dadfe667ecd517dbbad36 (diff) | |
download | prosody-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.lua | 1 |
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]; |