You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@avalon.apache.org by do...@apache.org on 2002/05/12 14:38:12 UTC

cvs commit: jakarta-avalon-excalibur/merlin/src/java/org/apache/excalibur/merlin TransientProvider.java

donaldp     02/05/12 05:38:12

  Modified:    merlin/src/java/org/apache/excalibur/merlin
                        TransientProvider.java
  Log:
  Remove unused variable
  
  Revision  Changes    Path
  1.2       +3 -4      jakarta-avalon-excalibur/merlin/src/java/org/apache/excalibur/merlin/TransientProvider.java
  
  Index: TransientProvider.java
  ===================================================================
  RCS file: /home/cvs/jakarta-avalon-excalibur/merlin/src/java/org/apache/excalibur/merlin/TransientProvider.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TransientProvider.java	10 May 2002 17:53:09 -0000	1.1
  +++ TransientProvider.java	12 May 2002 12:38:12 -0000	1.2
  @@ -14,7 +14,7 @@
   import org.apache.avalon.framework.configuration.Configuration;
   
   /**
  - * A <code>TransientProvider</code> is a provider of transient services.  A 
  + * A <code>TransientProvider</code> is a provider of transient services.  A
    * transient service is a service where total responsibility for the lifetime
    * of the service rests with client aquiring the service.
    * @author <a href="mailto:mcconnell@osm.net">Stephen McConnell</a>
  @@ -24,7 +24,6 @@
       private ServiceFactory m_factory;
       private UnitInfo m_info;
       private boolean m_disposed;
  -    private Configuration m_config;
   
      /**
       * Creation of a new TransientProvider.
  @@ -40,12 +39,12 @@
       }
   
      /**
  -    * Create a new instance of a transient service.  
  +    * Create a new instance of a transient service.
       * @return Object a new instance of a transient service
       */
       public Object create()
       {
  -        if( m_disposed ) 
  +        if( m_disposed )
           {
               throw new IllegalStateException( "Transient provider has been disposed.");
           }
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>