Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ assetPipelineVersion=3.3.4
gebVersion=2.3
gormVersion=8.0.2
grailsGradlePluginVersion=6.1.0
groovyVersion=3.0.11
groovyVersion=3.0.19
h2Version=1.4.200
hibernate5Version=5.6.15.Final
hibernateValidatorVersion=6.2.5.Final
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ abstract class AbstractHibernateGormStaticApi<D> extends GormStaticApi<D> {

protected List<String> removeNullNames(Map query) {
List<String> nullNames = []
Set<String> allNames = new HashSet<String>(query.keySet())
Set<String> allNames = new HashSet<>(query.keySet() as Set<String>)
for (String name in allNames) {
if (query[name] == null) {
query.remove name
Expand Down