From b8f9461e29c9ce6e876d981212d3e52ab77bda19 Mon Sep 17 00:00:00 2001 From: Scott Murphy Heiberg Date: Mon, 11 Nov 2024 22:02:17 -0800 Subject: [PATCH] Add default constructor for backwards compatibility --- .../groovy/org/grails/plugins/web/taglib/RenderTagLib.groovy | 3 +++ 1 file changed, 3 insertions(+) diff --git a/grails-web-gsp-taglib/src/main/groovy/org/grails/plugins/web/taglib/RenderTagLib.groovy b/grails-web-gsp-taglib/src/main/groovy/org/grails/plugins/web/taglib/RenderTagLib.groovy index 7789f284d4..b3243a6cd4 100644 --- a/grails-web-gsp-taglib/src/main/groovy/org/grails/plugins/web/taglib/RenderTagLib.groovy +++ b/grails-web-gsp-taglib/src/main/groovy/org/grails/plugins/web/taglib/RenderTagLib.groovy @@ -37,6 +37,9 @@ import org.springframework.util.StringUtils @TagLib class RenderTagLib implements TagLibrary { + RenderTagLib() {} + + @Autowired RenderTagLib(GroovyPagesTemplateRenderer groovyPagesTemplateRenderer, @Autowired(required = false) ErrorsViewStackTracePrinter errorsViewStackTracePrinter, CodecLookup codecLookup) { this.groovyPagesTemplateRenderer = groovyPagesTemplateRenderer this.errorsViewStackTracePrinter = errorsViewStackTracePrinter