Hi, I'm doing some logging improvements for f:converter tag and I noticed folowing weird code - line 157:
Object lv = vh.getLocalValue();
FacesContext faces = faceletContext.getFacesContext();
if (lv instanceof String)
{
vh.setValue(c.getAsObject(faces, parent, (String) lv));
}
What is purpose of this code? Please notice that this is called as part
of VDL.buildView
Regards,
Kočičák
