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 | f46f4b97ebf16c4816d5e8847baeb062c0212bd9 (patch) | |
tree | 94383ccc87a5df4892c1be737aeb427a93dc2993 /util | |
parent | 5f8f75ddab1610b193ced17dec46164b6db72db8 (diff) | |
download | prosody-f46f4b97ebf16c4816d5e8847baeb062c0212bd9.tar.gz prosody-f46f4b97ebf16c4816d5e8847baeb062c0212bd9.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 |