On 14 Apr 2002 [EMAIL PROTECTED] wrote: > donaldp 02/04/13 21:06:39 > > Modified: all/src/scratchpad/org/apache/avalon/excalibur/i18n > BundleSelector.java > Log: > Made constant final > > Revision Changes Path > 1.14 +2 -3 > jakarta-avalon-excalibur/all/src/scratchpad/org/apache/avalon/excalibur/i18n/BundleSelector.java > > Index: BundleSelector.java > =================================================================== > RCS file: > /home/cvs/jakarta-avalon-excalibur/all/src/scratchpad/org/apache/avalon/excalibur/i18n/BundleSelector.java,v > retrieving revision 1.13 > retrieving revision 1.14 > diff -u -r1.13 -r1.14 > --- BundleSelector.java 7 Apr 2002 06:44:18 -0000 1.13 > +++ BundleSelector.java 14 Apr 2002 04:06:39 -0000 1.14 > @@ -23,16 +23,15 @@ > * > * @author <a href="mailto:[EMAIL PROTECTED]">Neeme Praks</a> > * @author <a href="mailto:[EMAIL PROTECTED]">Mike Engelhart</a> > - * @version $Id: BundleSelector.java,v 1.13 2002/04/07 06:44:18 donaldp > Exp $ > + * @version $Id: BundleSelector.java,v 1.14 2002/04/14 04:06:39 donaldp > Exp $ > */ > - > public class BundleSelector > extends ExcaliburComponentSelector > { > /** > * The role implemented by an <code>BundleSelector</code>. > */ > - public static String ROLE = BundleSelector.class.getName(); > + public static final String ROLE = BundleSelector.class.getName();
Just a dumb question: Is the role implemented by the BundleSelector different than that of ExcaliburComponentSelector (I thought that subclasses don't have to change the role of the super class as they implement the same role)? Giacomo -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
