Re: 4.0: which EL version / remove deprecated methods

2023-01-19 Thread Thomas Andraschko
Hi Paul, there is no harm to leave it but there is also no benefit AFAICS as getFeatureDescriptors isnt really used. It was just a idea to cleanup code. But we can leave it as it is for now and do it in EE11. Am Mi., 18. Jan. 2023 um 20:31 Uhr schrieb Paul Nicolucci < pnicolu...@gmail.com>: > Hi

Re: 4.0: which EL version / remove deprecated methods

2023-01-18 Thread Paul Nicolucci
Hi Thomas, The getFeatureDescriptors method was deprecated in Expression Language 5.0: https://jakarta.ee/specifications/expression-language/5.0/apidocs/jakarta.el/jakarta/el/elresolver#getFeatureDescriptors(jakarta.el.ELContext,java.lang.Object) (EE10). Why would we remove the code we have for

Re: 4.0: which EL version / remove deprecated methods

2023-01-18 Thread Melloware
I agree with that Thomas. On 1/18/2023 5:36 AM, Thomas Andraschko wrote: Hi, currently we compile on EE10 but e.g. Jetty isnt ready yet, so i added support for Servlet5/EE9 on MyFaces 4.0. What about EL? In EL EE10 getFeatureDescriptors was deprecated and has a empty default impl. In EL EE9

4.0: which EL version / remove deprecated methods

2023-01-18 Thread Thomas Andraschko
Hi, currently we compile on EE10 but e.g. Jetty isnt ready yet, so i added support for Servlet5/EE9 on MyFaces 4.0. What about EL? In EL EE10 getFeatureDescriptors was deprecated and has a empty default impl. In EL EE9 getFeatureDescriptors is still there but it seems that is somehow a not useful