You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by na...@apache.org on 2006/12/16 08:12:03 UTC

svn commit: r487767 - /webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/ParamWriter.java

Author: nadiramra
Date: Fri Dec 15 23:12:03 2006
New Revision: 487767

URL: http://svn.apache.org/viewvc?view=rev&rev=487767
Log:
Remove unneeded method.

Modified:
    webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/ParamWriter.java

Modified: webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/ParamWriter.java
URL: http://svn.apache.org/viewvc/webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/ParamWriter.java?view=diff&rev=487767&r1=487766&r2=487767
==============================================================================
--- webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/ParamWriter.java (original)
+++ webservices/axis/trunk/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/ParamWriter.java Fri Dec 15 23:12:03 2006
@@ -237,25 +237,6 @@
         }
     }
 
-    /* This is a must for complex wsdl file (cycle in includes)*/
-    protected String getCHeaderFileCorrectParmNameConsideringArraysAndComplexTypes(AttributeInfo attrib)
-        throws WrapperFault
-    {
-        if (attrib.isArray())
-        {
-            if (attrib.isSimpleType())
-                return CUtils.getBasicArrayNameforType(attrib.getTypeName());
-            else
-                return CUtils.getCmplxArrayNameforType(attrib.getSchemaName());
-        }
-        else if (!attrib.isSimpleType())
-            return attrib.getTypeName() + "*";
-        else if (attrib.isAttribute() && attrib.isOptional())
-            return attrib.getTypeName() + "*";
-        else
-            return attrib.getTypeName();
-    }
-
     protected boolean isElementNillable(int index)
     {
         boolean bNillable = false;



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