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/10/09 02:44:02 UTC

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

rsitze      2002/10/08 17:44:02

  Modified:    java/src/org/apache/axis AxisProperties.java
  Log:
  Pushing logic back into core-discovery model.
  
  Revision  Changes    Path
  1.19      +6 -5      xml-axis/java/src/org/apache/axis/AxisProperties.java
  
  Index: AxisProperties.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/AxisProperties.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- AxisProperties.java	9 Oct 2002 00:43:05 -0000	1.18
  +++ AxisProperties.java	9 Oct 2002 00:44:02 -0000	1.19
  @@ -232,11 +232,6 @@
               });
       }
   
  -    
  -    public static Object newInstance(Class spiClass, Class defaultClass)
  -    {
  -        return newInstance(new SPInterface(spiClass), new DefaultClassHolder(defaultClass));
  -    }
           
       /**
        * Get value for property bound to the current thread context class loader.
  @@ -325,6 +320,12 @@
        */
       public static Properties getProperties() {
           return ManagedProperties.getProperties();
  +    }
  +
  +
  +    public static Object newInstance(Class spiClass, Class defaultClass)
  +    {
  +        return newInstance(new SPInterface(spiClass), new DefaultClassHolder(defaultClass));
       }
   
       /**