Skip to content

Commit 1339e8a

Browse files
committed
Use "LangUtils.nullToLangVoid()" in "func.combX5()"
1 parent 3b6ef1c commit 1339e8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/at/jddev0/lang/LangPredefinedFunctions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6440,7 +6440,7 @@ public static DataObject combX5Function(
64406440
return interpreter.callFunctionPointer(aFunc, a.getVariableName(), LangUtils.separateArgumentsWithArgumentSeparators(
64416441
Arrays.asList(
64426442
c,
6443-
retB == null?new DataObject().setVoid():retB
6443+
LangUtils.nullToLangVoid(retB)
64446444
)
64456445
), SCOPE_ID);
64466446
}

0 commit comments

Comments
 (0)