You are viewing a plain text version of this content. The canonical link for it is here.
Posted to torque-dev@db.apache.org by mp...@apache.org on 2003/06/03 13:39:24 UTC

cvs commit: db-torque/src/test/org/apache/torque BaseTestCase.java

mpoeschl    2003/06/03 04:39:24

  Modified:    src/test/org/apache/torque BaseTestCase.java
  Log:
  remove unused member
  
  Revision  Changes    Path
  1.8       +6 -16     db-torque/src/test/org/apache/torque/BaseTestCase.java
  
  Index: BaseTestCase.java
  ===================================================================
  RCS file: /home/cvs/db-torque/src/test/org/apache/torque/BaseTestCase.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- BaseTestCase.java	13 Sep 2002 02:43:09 -0000	1.7
  +++ BaseTestCase.java	3 Jun 2003 11:39:24 -0000	1.8
  @@ -3,7 +3,7 @@
   /* ====================================================================
    * The Apache Software License, Version 1.1
    *
  - * Copyright (c) 2001 The Apache Software Foundation.  All rights
  + * Copyright (c) 2001-2003 The Apache Software Foundation.  All rights
    * reserved.
    *
    * Redistribution and use in source and binary forms, with or without
  @@ -66,20 +66,11 @@
    */
   public abstract class BaseTestCase extends TestCase
   {
  -    /**
  -     * Conditional compilation flag.
  -     */
  -    private static final boolean DEBUG = false;
  -
  -    /**
  -     * The path to the configuration file.
  -     */
  -    private static final String CONFIG_FILE =
  -        "src/test/TurbineResources.properties";
  +    /** The path to the configuration file. */
  +    private static final String CONFIG_FILE 
  +            = "src/test/TurbineResources.properties";
   
  -    /**
  -     * Whether torque has been initialized.
  -     */
  +    /** Whether torque has been initialized. */
       private static boolean hasInitialized = false;
   
       /**
  @@ -114,5 +105,4 @@
               }
           }
       }
  -
   }