Skip to content

Commit

Permalink
size -> size() #947
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisala committed May 16, 2024
1 parent 3593d15 commit 84d425a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class PropertyAccessor {
results.each { item ->
tmpResults.addAll(unrollSingle(item))
}
if (tmpResults.size > 0) {
if (tmpResults.size() > 0) {
results = tmpResults
}
}
Expand Down

1 comment on commit 84d425a

@temi
Copy link
Contributor

@temi temi commented on 84d425a May 16, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

looks good to me

Please sign in to comment.