cmlenz      2003/06/11 09:21:52

  Modified:    integration/ant/src/java/org/apache/cactus/integration/ant
                        RunServerTestsTask.java
  Log:
  Fix some "design for extension" violations
  
  Revision  Changes    Path
  1.10      +5 -5      
jakarta-cactus/integration/ant/src/java/org/apache/cactus/integration/ant/RunServerTestsTask.java
  
  Index: RunServerTestsTask.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-cactus/integration/ant/src/java/org/apache/cactus/integration/ant/RunServerTestsTask.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- RunServerTestsTask.java   12 May 2003 22:46:45 -0000      1.9
  +++ RunServerTestsTask.java   11 Jun 2003 16:21:51 -0000      1.10
  @@ -122,7 +122,7 @@
       /**
        * The factory for creating ant tasks that is passed to the containers.
        */
  -    private transient AntTaskFactory antTaskFactory = new AntTaskFactory()
  +    private AntTaskFactory antTaskFactory = new AntTaskFactory()
       {
           public Task createTask(String theName)
           {
  @@ -193,7 +193,7 @@
        * 
        * @return The start element
        */
  -    public GenericContainer.Hook createStart()
  +    public final GenericContainer.Hook createStart()
       {
           if (this.container.isStartUpSet())
           {
  @@ -223,7 +223,7 @@
        * 
        * @return The stop element
        */
  -    public GenericContainer.Hook createStop()
  +    public final GenericContainer.Hook createStop()
       {
           if (this.container.isShutDownSet())
           {
  @@ -253,7 +253,7 @@
        * 
        * @return The test element
        */
  -    public GenericContainer.Hook createTest()
  +    public final GenericContainer.Hook createTest()
       {
           if (this.testHook != null)
           {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to