Skip to content

Commit c42d54b

Browse files
authored
Merge pull request #190 from mybios/JINJUN
修复几个脚本报错
2 parents 2a341f5 + fbc4913 commit c42d54b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CSharp.lua/CoreSystem.Lua/All.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ return function(dir, conf)
3030
load("Enum")
3131
load("TimeSpan")
3232
load("DateTime")
33-
load("Type")
3433
load("Collections.EqualityComparer")
3534
load("Collection")
3635
load("Array")
36+
load("Type")
3737
load("Collections.List")
3838
load("Collections.Dictionary")
3939
load("Collections.Queue")

CSharp.lua/CoreSystem.Lua/CoreSystem/Collection.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ function Collection.forEachArray(t, action)
551551
if action == null then throw(ArgumentNullException("action")) end
552552
local version = versions[t]
553553
for i = 1, #t do
554-
if versions ~= versions[t] then
554+
if version ~= versions[t] then
555555
throwFailedVersion()
556556
end
557557
action(unWrap(t[i]))

CSharp.lua/CoreSystem.Lua/CoreSystem/Delegate.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ end
325325

326326
local function create0_2(f)
327327
return function(x1, x2, T1, T2)
328-
return f(x1, x2, T2)
328+
return f(x1, x2, T1, T2)
329329
end
330330
end
331331

0 commit comments

Comments
 (0)