jdaugherty commented on issue #14130:
URL: https://github.com/apache/grails-core/issues/14130#issuecomment-2797619047

   This sample can be reduced to the following groovy class: 
   
                        class GenericWrapper<T> {
   
                                private static final Closure<T> noOpClosure = { 
T v -> return v }
   
                                private T obj
   
                                GenericWrapper(T obj) {
                                        this.obj = obj
                                }
   
                                T transformObj() {
                                        return noOpClosure.call(this.obj)
                                }
   
                        }
   
   


-- 
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]

Reply via email to