[EMAIL PROTECTED] schrieb:
Author: lu4242
Date: Mon Aug 11 15:25:26 2008
New Revision: 684964
URL: http://svn.apache.org/viewvc?rev=684964&view=rev
Log:
fix errors introduced on revision 684592 that makes tomahawk core12 fail (and
mvn clirr:check too!)
- static final String COMPONENT_TYPE = "javax.faces.Command";
- private static final String COMPONENT_FAMILY = "javax.faces.Command";
+ public static final String COMPONENT_TYPE = "javax.faces.Command";
+ public static final String COMPONENT_FAMILY = "javax.faces.Command";
Oops. Didn't realize that the spec actually declares these to be public
constants. Sorry about that.