Skip to content

Commit c37fa53

Browse files
committed
Revert "Defensive coding for null projection list in boxlang prime"
This reverts commit 51ffdca.
1 parent 922fdc6 commit c37fa53

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

models/criterion/BaseBuilder.cfc

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -404,11 +404,7 @@ component accessors="true" {
404404

405405
// iterate and add dynamically if the incoming argument exists, man, so much easier if we had closures.
406406
for ( var pType in arguments ) {
407-
if (
408-
structKeyExists( arguments, pType ) && NOT listFindNoCase( excludes, pType ) && !isNull(
409-
projectionList
410-
)
411-
) {
407+
if ( structKeyExists( arguments, pType ) AND NOT listFindNoCase( excludes, pType ) ) {
412408
addProjection(
413409
arguments[ pType ],
414410
lCase( pType ),

0 commit comments

Comments
 (0)