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 di...@apache.org on 2003/01/21 00:16:23 UTC

cvs commit: xml-axis/java/test/wsdl/soap12/assertion Soap12TestRpcBindingImpl.java

dims        2003/01/20 15:16:23

  Modified:    java/test/wsdl/soap12/assertion
                        Soap12TestRpcBindingImpl.java
  Log:
  fix return param
  
  Revision  Changes    Path
  1.3       +1 -1      xml-axis/java/test/wsdl/soap12/assertion/Soap12TestRpcBindingImpl.java
  
  Index: Soap12TestRpcBindingImpl.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/test/wsdl/soap12/assertion/Soap12TestRpcBindingImpl.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Soap12TestRpcBindingImpl.java	20 Jan 2003 19:19:59 -0000	1.2
  +++ Soap12TestRpcBindingImpl.java	20 Jan 2003 23:16:23 -0000	1.3
  @@ -42,7 +42,7 @@
       }
   
       public float[] echoFloatArray(float[] inputFloatArray) throws java.rmi.RemoteException {
  -        return null;
  +        return inputFloatArray;
       }
   
       public java.lang.String[] echoStringArray(java.lang.String[] inputStringArray) throws java.rmi.RemoteException {