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 di...@apache.org on 2007/04/20 18:23:22 UTC

svn commit: r530847 - /webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/runtime/description/injection/impl/ResourceInjectionServiceRuntimeDescriptionBuilder.java

Author: dims
Date: Fri Apr 20 09:23:20 2007
New Revision: 530847

URL: http://svn.apache.org/viewvc?view=rev&rev=530847
Log:
fix spelling error

Modified:
    webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/runtime/description/injection/impl/ResourceInjectionServiceRuntimeDescriptionBuilder.java

Modified: webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/runtime/description/injection/impl/ResourceInjectionServiceRuntimeDescriptionBuilder.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/runtime/description/injection/impl/ResourceInjectionServiceRuntimeDescriptionBuilder.java?view=diff&rev=530847&r1=530846&r2=530847
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/runtime/description/injection/impl/ResourceInjectionServiceRuntimeDescriptionBuilder.java (original)
+++ webservices/axis2/trunk/java/modules/jaxws/src/org/apache/axis2/jaxws/runtime/description/injection/impl/ResourceInjectionServiceRuntimeDescriptionBuilder.java Fri Apr 20 09:23:20 2007
@@ -53,7 +53,7 @@
         Method method = getPostConstructMethod(implClass);
         desc.setPostConstructMethod(method);
 
-        method = getPreDestoryMethod(implClass);
+        method = getPreDestroyMethod(implClass);
         desc.setPreDestroyMethod(method);
 
         return desc;
@@ -95,7 +95,7 @@
         return null;
     }
 
-    static private Method getPreDestoryMethod(Class implClass) {
+    static private Method getPreDestroyMethod(Class implClass) {
         List<Method> methods = getMethods(implClass);
         for (Method method : methods) {
             if (method.getAnnotation(PreDestroy.class) != null) {



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org