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/02/26 18:27:30 UTC

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

owenb       2003/02/26 09:27:30

  Modified:    java/src/org/apache/wsif/base WSIFClientProxy.java
  Log:
  Do not break out of loop early when finding a matching method argument type. This change fixes a problem with wrapped style invocations
  
  Revision  Changes    Path
  1.18      +1 -2      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.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- WSIFClientProxy.java	26 Feb 2003 15:55:18 -0000	1.17
  +++ WSIFClientProxy.java	26 Feb 2003 17:27:30 -0000	1.18
  @@ -517,8 +517,7 @@
                                       && mapping.getJavaType().equals(
                                           args[argIndex].getClass())))
                                   exactMatchThisArg = true;
  -                        } else
  -                            break;
  +                        }
                       }
                   }