Silence warnings

This commit is contained in:
Jasmijn Wellner 2024-12-28 17:10:38 +01:00
parent a835305539
commit f423938ec0

View File

@ -351,7 +351,7 @@ describe("bitser", function()
it("is able to deserialize the same instance twice", function()
local class = {}
local instance = setmetatable({}, class)
local deserialize = function(data, class)
local deserialize = function(_, _)
return instance
end