Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit a6e26b2

Browse files
authored
Groovy 3.0.19 compatible (#791)
* Update Groovy to 3.0.19 * Make project compatible with Groovy 3.0.19
1 parent 02b2c10 commit a6e26b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ assetPipelineVersion=3.3.4
22
gebVersion=2.3
33
gormVersion=8.0.2
44
grailsGradlePluginVersion=6.1.0
5-
groovyVersion=3.0.11
5+
groovyVersion=3.0.19
66
h2Version=1.4.200
77
hibernate5Version=5.6.15.Final
88
hibernateValidatorVersion=6.2.5.Final

grails-datastore-gorm-hibernate5/src/main/groovy/org/grails/orm/hibernate/AbstractHibernateGormStaticApi.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ abstract class AbstractHibernateGormStaticApi<D> extends GormStaticApi<D> {
771771

772772
protected List<String> removeNullNames(Map query) {
773773
List<String> nullNames = []
774-
Set<String> allNames = new HashSet<String>(query.keySet())
774+
Set<String> allNames = new HashSet<>(query.keySet() as Set<String>)
775775
for (String name in allNames) {
776776
if (query[name] == null) {
777777
query.remove name

0 commit comments

Comments
 (0)