Skip to content

Commit b849195

Browse files
committed
Use "LangUtils.nullToLangVoid()" in "func.listReduceColumnFunction()"
1 parent 3f4a8f3 commit b849195

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
@@ -8772,7 +8772,7 @@ public static DataObject listReduceColumnFunction(
87728772
), SCOPE_ID);
87738773
}
87748774

8775-
reduceedLists.add(currentValueObject == null?new DataObject().setVoid():currentValueObject);
8775+
reduceedLists.add(LangUtils.nullToLangVoid(currentValueObject));
87768776
}
87778777

87788778
return new DataObject().setList(reduceedLists);

0 commit comments

Comments
 (0)