You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsif-dev@ws.apache.org by ow...@apache.org on 2003/03/05 18:16:28 UTC

cvs commit: xml-axis-wsif/java/src/org/apache/wsif/base WSIFClientProxy.java

owenb       2003/03/05 09:16:28

  Modified:    java/src/org/apache/wsif/base WSIFClientProxy.java
  Log:
  Use non-deprecated getWrappedDocLiteralPart method on ProviderUtils rather than the deprecated version on WSIFUtils
  
  Revision  Changes    Path
  1.20      +1 -1      xml-axis-wsif/java/src/org/apache/wsif/base/WSIFClientProxy.java
  
  Index: WSIFClientProxy.java
  ===================================================================
  RCS file: /home/cvs/xml-axis-wsif/java/src/org/apache/wsif/base/WSIFClientProxy.java,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- WSIFClientProxy.java	27 Feb 2003 15:46:30 -0000	1.19
  +++ WSIFClientProxy.java	5 Mar 2003 17:16:27 -0000	1.20
  @@ -646,7 +646,7 @@
   	 */
   	private void unWrapIfWrappedDocLit(List parts, String operationName)
   		throws WSIFException {
  -	    Part p = WSIFUtils.getWrappedDocLiteralPart(parts, operationName);
  +	    Part p = ProviderUtils.getWrappedDocLiteralPart(parts, operationName);
   		if (p != null) {
   		    List unWrappedParts = ProviderUtils.unWrapPart(p, def);
   			parts.remove(p);