# HG changeset patch # User Waqas Hussain # Date 1256107271 -18000 # Node ID 2714ccde25698b73ebf8716d7918df8e8a50a2d5 # Parent e82ceb5bbe494e0d1b75f14d17116fb5f8c88e52 usermanager: Removed an unnecessary global access. diff -r e82ceb5bbe49 -r 2714ccde2569 core/usermanager.lua --- a/core/usermanager.lua Wed Oct 21 11:40:29 2009 +0500 +++ b/core/usermanager.lua Wed Oct 21 11:41:11 2009 +0500 @@ -6,10 +6,7 @@ -- COPYING file in the source package for more information. -- - - -require "util.datamanager" -local datamanager = datamanager; +local datamanager = require "util.datamanager"; local log = require "util.logger".init("usermanager"); local type = type; local error = error;