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 | 4e5cc92ac3f293b658838e0faa55645b705e3b48 (patch) | |
tree | e4d0c3e2c072400574af5a789ae0d497ee96f5e7 | |
parent | f7167c53dd46baa8dcc69cb8e7c404e70e28b367 (diff) | |
download | prosody-4e5cc92ac3f293b658838e0faa55645b705e3b48.tar.gz prosody-4e5cc92ac3f293b658838e0faa55645b705e3b48.zip |
util.gc: Linter fixes [luacheck]
-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 |