Copilot commented on code in PR #15944:
URL: https://github.com/apache/grails-core/pull/15944#discussion_r3553832149
##########
grails-forge/grails-forge-core/src/main/java/org/grails/forge/options/GormImpl.java:
##########
@@ -19,13 +19,19 @@
package org.grails.forge.options;
import io.micronaut.core.annotation.NonNull;
+import io.micronaut.core.annotation.Nullable;
public enum GormImpl {
- HIBERNATE("gorm-hibernate5", "Hibernate 5"),
+ HIBERNATE5("gorm-hibernate5", "Hibernate 5"),
+ HIBERNATE7("gorm-hibernate7", "Hibernate 7"),
MONGODB("gorm-mongodb", "MongoDB");
- public static final GormImpl DEFAULT_OPTION = HIBERNATE;
+ public static final GormImpl DEFAULT_OPTION = HIBERNATE5;
Review Comment:
`GormImpl.HIBERNATE` was removed/renamed to `HIBERNATE5`, but there is still
a usage in
`grails-forge-analytics-postgres/src/test/groovy/org/grails/forge/analytics/postgres/StoreGeneratedProjectStatsSpec.groovy:76`
(`new Generated(..., GormImpl.HIBERNATE, ...)`). This will fail compilation
once this PR lands; update that reference to `GormImpl.HIBERNATE5`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]