Skip to content

Commit a278b4f

Browse files
committed
Remove more ArrayUtils.EmptyObjects
1 parent 628d284 commit a278b4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Src/IronPython.Modules/_thread.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,9 @@ public void Start() {
228228
try {
229229
#pragma warning disable 618 // TODO: obsolete
230230
if (_kwargs != null) {
231-
PythonOps.CallWithArgsTupleAndKeywordDictAndContext(_context, _func, ArrayUtils.EmptyObjects, ArrayUtils.EmptyStrings, _args, _kwargs);
231+
PythonOps.CallWithArgsTupleAndKeywordDictAndContext(_context, _func, [], [], _args, _kwargs);
232232
} else {
233-
PythonOps.CallWithArgsTuple(_func, ArrayUtils.EmptyObjects, _args);
233+
PythonOps.CallWithArgsTuple(_func, [], _args);
234234
}
235235
#pragma warning restore 618
236236
} catch (SystemExitException) {

0 commit comments

Comments
 (0)