You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by rs...@apache.org on 2002/05/17 20:21:37 UTC

cvs commit: xml-axis/java/src/org/apache/axis/configuration DefaultEngineConfigurationFactory.java

rsitze      02/05/17 11:21:37

  Modified:    java/src/org/apache/axis/configuration
                        DefaultEngineConfigurationFactory.java
  Log:
  Use constant rather than literal.
  
  Revision  Changes    Path
  1.7       +2 -1      xml-axis/java/src/org/apache/axis/configuration/DefaultEngineConfigurationFactory.java
  
  Index: DefaultEngineConfigurationFactory.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/configuration/DefaultEngineConfigurationFactory.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- DefaultEngineConfigurationFactory.java	25 Feb 2002 17:38:15 -0000	1.6
  +++ DefaultEngineConfigurationFactory.java	17 May 2002 18:21:37 -0000	1.7
  @@ -98,7 +98,8 @@
        * has overridden this with their own.
        */
       public DefaultEngineConfigurationFactory() {
  -        String fClassName = System.getProperty("axis.EngineConfigFactory");
  +        String fClassName =
  +            System.getProperty(EngineConfigurationFactory.SYSTEM_PROPERTY_NAME);
   
           if (fClassName != null) {
               try {