# HG changeset patch # User Waqas Hussain # Date 1294190638 -18000 # Node ID c11f1cc2c79db02360ce32879ed24f025caf18e6 # Parent a90bbca91c878cd4bb00718b7ebab831d73856cb mod_storage_sql: Removed unnecessary initialization of a variable. diff -r a90bbca91c87 -r c11f1cc2c79d plugins/mod_storage_sql.lua --- a/plugins/mod_storage_sql.lua Wed Jan 05 06:23:17 2011 +0500 +++ b/plugins/mod_storage_sql.lua Wed Jan 05 06:23:58 2011 +0500 @@ -27,7 +27,7 @@ local setmetatable = setmetatable; local json = require "util.json"; -local connection = ...; +local connection; local host,user,store = module.host; local params = module:get_option("sql");