Hello:

1) trinidad-impl\src\main\java\org\apache\myfaces\trinidadinternal\util\JavaIntrospector.java contains 2 classes: JavaIntrospector and GenericBeanInfo(which claims to be package private). Should they be in separate file?

2) In org.apache.myfaces.trinidadinternal.ui.ClassRendererInstantiator.instantiate():
...
catch (ClassNotFoundException cnfe)
   {
     _showInstantiationError(cnfe);
     throw new UndeclaredThrowableException( cnfe,
        "Instantiation of UIX Components Renderer failed, class " +
        _className + " not found.");
   }
...
Parameters for the exception looks like reversed. There is only (String, Throwable) but no (Throwable, String)

Could anyone who is familiar with the code tell me if these two need to be fixed? Thanks.

Reply via email to