donaldp     02/04/02 02:43:10

  Modified:    extension/src/test/org/apache/avalon/excalibur/extension/test
                        PackageRepositoryTestCase.java
  Log:
  Remove unused variables
  
  Revision  Changes    Path
  1.12      +3 -4      
jakarta-avalon-excalibur/extension/src/test/org/apache/avalon/excalibur/extension/test/PackageRepositoryTestCase.java
  
  Index: PackageRepositoryTestCase.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-avalon-excalibur/extension/src/test/org/apache/avalon/excalibur/extension/test/PackageRepositoryTestCase.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- PackageRepositoryTestCase.java    17 Mar 2002 12:19:34 -0000      1.11
  +++ PackageRepositoryTestCase.java    2 Apr 2002 10:43:10 -0000       1.12
  @@ -23,7 +23,7 @@
    * TestCases for PackageRepository.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]">Peter Donald</a>
  - * @version $Revision: 1.11 $ $Date: 2002/03/17 12:19:34 $
  + * @version $Revision: 1.12 $ $Date: 2002/04/02 10:43:10 $
    */
   public class PackageRepositoryTestCase
       extends TestCase
  @@ -49,7 +49,7 @@
       public void testGoodPath()
           throws Exception
       {
  -        final DefaultPackageRepository repository = new 
DefaultPackageRepository( m_path );
  +        new DefaultPackageRepository( m_path );
       }
   
       public void testBadPath()
  @@ -59,8 +59,7 @@
           {
               final File pathElement3 = new File( m_baseDirectory, "path3" );
               final File[] path = new File[]{m_pathElement1, m_pathElement2, 
pathElement3};
  -            final DefaultPackageRepository repository =
  -                new DefaultPackageRepository( path );
  +            new DefaultPackageRepository( path );
           }
           catch( final IllegalArgumentException iae )
           {
  
  
  

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

Reply via email to