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 sa...@apache.org on 2004/11/08 03:15:10 UTC

cvs commit: ws-axis/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/info ParameterInfo.java

samisa      2004/11/07 18:15:10

  Modified:    c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/info Tag:
                        Release1-3-cand2-bugfixes-branch ParameterInfo.java
  Log:
  Eliminated the problem of deserializer looking for _Ref.
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.11.2.1  +2 -2      ws-axis/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/info/ParameterInfo.java
  
  Index: ParameterInfo.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/src/wsdl/org/apache/axis/wsdl/wsdl2ws/info/ParameterInfo.java,v
  retrieving revision 1.11
  retrieving revision 1.11.2.1
  diff -u -r1.11 -r1.11.2.1
  --- ParameterInfo.java	20 Oct 2004 13:33:19 -0000	1.11
  +++ ParameterInfo.java	8 Nov 2004 02:15:10 -0000	1.11.2.1
  @@ -69,9 +69,9 @@
                   // is made to make sure after replacinf ANON_TOKEN it is still not a keyword
                   attribName = TypeMap.resoleveWSDL2LanguageNameClashes(attribName, WrapperConstants.LANGUAGE_CPP);
   
  -		if (isReference())
  +		/*if (isReference())
   			result = attribName + "_Ref";
  -		else
  +		else*/
   			result = attribName;
   		return result;	        
       }