This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/grails-core.git
The following commit(s) were added to refs/heads/7.0.x by this push:
new f648b6b02f unneeded semicolon
f648b6b02f is described below
commit f648b6b02f93653eff638121be90dc5766741c6c
Author: Paul King <[email protected]>
AuthorDate: Thu May 8 12:18:40 2025 +1000
unneeded semicolon
---
.../src/main/groovy/grails/artefact/gsp/TagLibraryInvoker.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/grails-gsp/grails-web-taglib/src/main/groovy/grails/artefact/gsp/TagLibraryInvoker.groovy
b/grails-gsp/grails-web-taglib/src/main/groovy/grails/artefact/gsp/TagLibraryInvoker.groovy
index 88e87f7e75..f97ef04505 100644
---
a/grails-gsp/grails-web-taglib/src/main/groovy/grails/artefact/gsp/TagLibraryInvoker.groovy
+++
b/grails-gsp/grails-web-taglib/src/main/groovy/grails/artefact/gsp/TagLibraryInvoker.groovy
@@ -40,7 +40,7 @@ trait TagLibraryInvoker extends WebAttributes{
private TagLibraryLookup tagLibraryLookup
- private boolean developmentMode = Environment.isDevelopmentMode();
+ private boolean developmentMode = Environment.isDevelopmentMode()
@Autowired(required = false)
void setTagLibraryLookup(TagLibraryLookup tagLibraryLookup) {