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 | 7c632da844ca208bc582465d99f2b1098afd1e7a (patch) | |
tree | e4d0c3e2c072400574af5a789ae0d497ee96f5e7 /util | |
parent | 758df8e14d695899481b5734afe7513672a5920d (diff) | |
download | prosody-7c632da844ca208bc582465d99f2b1098afd1e7a.tar.gz prosody-7c632da844ca208bc582465d99f2b1098afd1e7a.zip |
util.gc: Linter fixes [luacheck]
Diffstat (limited to 'util')
-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 |