From d5a48614b7a2f6f2cbe821e7e45f7aba881aca96 Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 1 May 2014 17:11:05 +0000 Subject: [PATCH] Remove a now unused method --- BizHawk.Client.Common/lua/LuaLibraryBase.cs | 22 --------------------- 1 file changed, 22 deletions(-) diff --git a/BizHawk.Client.Common/lua/LuaLibraryBase.cs b/BizHawk.Client.Common/lua/LuaLibraryBase.cs index e8a61131ad..89691bc41f 100644 --- a/BizHawk.Client.Common/lua/LuaLibraryBase.cs +++ b/BizHawk.Client.Common/lua/LuaLibraryBase.cs @@ -41,27 +41,5 @@ namespace BizHawk.Client.Common { return (uint)(double)luaArg; } - - /// - /// LuaInterface requires the exact match of parameter count, except optional parameters. - /// So, if you want to support variable arguments, declare them as optional and pass - /// them to this method. - /// - protected static object[] LuaVarArgs(params object[] luaArgs) - { - int n = luaArgs.Length; - int trim = 0; - for (int i = n - 1; i >= 0; --i) - { - if (luaArgs[i] == null) - { - ++trim; - } - } - - var luaResult = new object[n - trim]; - Array.Copy(luaArgs, luaResult, n - trim); - return luaResult; - } } }