Attached is a patch to fix this role string.

On Saturday 16 February 2002 12:10 am, you wrote:
> On Sat, 16 Feb 2002 14:52, Kevin Smith wrote:
> > The ROLE string for this class refers to:
> >
> > org.apache.avalon.cornerstone.services.silk.SilkServer
> >
> > but the class name is StageManager.
> >
> > Is this a typo or intentional? I noticed it as I was going thru the
> > code tidying up the ROLEs.
>
> Its a bug.
>
> BTW Would you mind sending one patch file rather than lots of little
> ones as it would be easier to apply :)
Index: StageManager.java
===================================================================
RCS file: /home/cvspublic/jakarta-avalon-cornerstone/src/java/org/apache/avalon/cornerstone/services/silk/StageManager.java,v
retrieving revision 1.3
diff -u -3 -p -u -b -r1.3 StageManager.java
--- StageManager.java	5 Feb 2002 13:40:59 -0000	1.3
+++ StageManager.java	17 Feb 2002 01:36:21 -0000
@@ -27,7 +27,7 @@ import org.apache.avalon.excalibur.event
  */
 
 public interface StageManager {
-    String ROLE = "org.apache.avalon.cornerstone.services.silk.SilkServer";
+    String ROLE = StageManager.class.getName();
 
     /**
      * Gets the sink for a specified stage name.
--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>


Reply via email to