diff options
author | Matthew Wild <mwild1@gmail.com> | 2020-06-15 14:23:47 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2020-06-15 14:23:47 +0100 |
commit | 0b812aacb0b2fb4be83343c287538285b9052b84 (patch) | |
tree | 94383ccc87a5df4892c1be737aeb427a93dc2993 /util/gc.lua | |
parent | 7ab56e662968a8e1342cccd4287003fef9a60252 (diff) | |
download | prosody-0b812aacb0b2fb4be83343c287538285b9052b84.tar.gz prosody-0b812aacb0b2fb4be83343c287538285b9052b84.zip |
util.gc: Linter fixes [luacheck]
Diffstat (limited to 'util/gc.lua')
-rw-r--r-- | util/gc.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/util/gc.lua b/util/gc.lua index e02e85c4..b400af6b 100644 --- a/util/gc.lua +++ b/util/gc.lua @@ -1,4 +1,3 @@ -local array = require "util.array"; local set = require "util.set"; local known_options = { @@ -41,7 +40,7 @@ local function configure(user, defaults) user.minor_threshold or defaults.minor_threshold, user.major_threshold or defaults.major_threshold ); - end + end return true; end |