Add missing generics to API that were missed in Faces 4.0 #1708
Labels
mojarra-implemented
API issue implemented by Mojarra
myfaces-implemented
API issue implemented by MyFaces
Milestone
During MyFaces 4.0 development I opened the following issue that outlines the missing generics: https://issues.apache.org/jira/browse/MYFACES-4454
https://jakarta.ee/specifications/faces/4.0/apidocs/jakarta/faces/context/externalcontextwrapper#getInitParameterMap() should have a return type of
Map<String,String>
The ExternalContext already defines the method in the same way.https://jakarta.ee/specifications/faces/4.0/apidocs/jakarta/faces/render/renderer#getConvertedValue(jakarta.faces.context.FacesContext,jakarta.faces.component.UIComponent,java.lang.Object) should take an argument of
T
rather thanUIComponent
This would align with the rest of the methods in theRenderer
API.This was missed when #1497 was completed for Faces 4.0.
The text was updated successfully, but these errors were encountered: