You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cactus-dev@jakarta.apache.org by vm...@apache.org on 2002/01/27 17:57:28 UTC

cvs commit: jakarta-cactus/src/framework/share/org/apache/cactus/client ClientConfiguration.java

vmassol     02/01/27 08:57:28

  Modified:    src/framework/share/org/apache/cactus/client
                        ClientConfiguration.java
  Log:
  audit fix
  
  Revision  Changes    Path
  1.5       +5 -5      jakarta-cactus/src/framework/share/org/apache/cactus/client/ClientConfiguration.java
  
  Index: ClientConfiguration.java
  ===================================================================
  RCS file: /home/cvs/jakarta-cactus/src/framework/share/org/apache/cactus/client/ClientConfiguration.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ClientConfiguration.java	13 Jan 2002 21:21:17 -0000	1.4
  +++ ClientConfiguration.java	27 Jan 2002 16:57:28 -0000	1.5
  @@ -66,28 +66,28 @@
    *
    * @author <a href="mailto:vmassol@apache.org">Vincent Massol</a>
    *
  - * @version $Id: ClientConfiguration.java,v 1.4 2002/01/13 21:21:17 vmassol Exp $
  + * @version $Id: ClientConfiguration.java,v 1.5 2002/01/27 16:57:28 vmassol Exp $
    */
   public class ClientConfiguration
   {
       /**
        * The logger
        */
  -    private final static Log logger =
  +    private static final Log logger =
           LogService.getInstance().getLog(ClientConfiguration.class.getName());
   
       /**
        * Name of the Cactus configuration file if cactus is to look for it in
        * the classpath.
        */
  -    private final static String CONFIG_DEFAULT_NAME = "cactus";
  +    private static final String CONFIG_DEFAULT_NAME = "cactus";
   
       /**
        * Name of the java property for specifying the location of the cactus
        * configuration file. This overrides any cactus configuration that is
        * put in the classpath.
        */
  -    private final static String CONFIG_PROPERTY = "cactus.config";
  +    private static final String CONFIG_PROPERTY = "cactus.config";
   
       /**
        * Properties file holding configuration data for Cactus.
  @@ -101,7 +101,7 @@
        *     
        * @return the cactus configuration as a <code>ResourceBundle</code>.
        */
  -    private final static ResourceBundle getConfiguration()
  +    private static final ResourceBundle getConfiguration()
       {
           if (CONFIG == null) {
               // Has the user passed the location of the cactus configuration file
  
  
  

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