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 da...@apache.org on 2006/02/09 03:26:42 UTC

svn commit: r376150 - /webservices/axis2/trunk/c/modules/core/description/op.c

Author: damitha
Date: Wed Feb  8 18:26:42 2006
New Revision: 376150

URL: http://svn.apache.org/viewcvs?rev=376150&view=rev
Log:
removed some commented code because now they can be used

Modified:
    webservices/axis2/trunk/c/modules/core/description/op.c

Modified: webservices/axis2/trunk/c/modules/core/description/op.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/description/op.c?rev=376150&r1=376149&r2=376150&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/op.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/op.c Wed Feb  8 18:26:42 2006
@@ -447,27 +447,28 @@
         return NULL;
     }
     message_out = NULL;
-    /*
+    
     op_impl->phases_in_fault_flow = axis2_array_list_create(env, 0);
     if(NULL == op_impl->phases_in_fault_flow)
     {
         axis2_op_free(&(op_impl->op), env);
         return NULL;
     }
-    
-    op_impl->modulerefs = axis2_array_list_create(env, 0);
-    if(NULL == op_impl->modulerefs)
+     
+    op_impl->phases_out_fault_flow = axis2_array_list_create(env, 0);
+    if(NULL == op_impl->phases_out_fault_flow)
     {
         axis2_op_free(&(op_impl->op), env);
         return NULL;
     }
-    
-    op_impl->phases_out_fault_flow = axis2_array_list_create(env, 0);
-    if(NULL == op_impl->phases_out_fault_flow)
+    /*
+    op_impl->modulerefs = axis2_array_list_create(env, 0);
+    if(NULL == op_impl->modulerefs)
     {
         axis2_op_free(&(op_impl->op), env);
         return NULL;
-    }*/
+    }
+    */
     
     axis2_op_set_msg_exchange_pattern(&(op_impl->op), env, 
         (axis2_char_t *) AXIS2_MEP_URI_IN_OUT);