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 2005/01/20 03:38:11 UTC

cvs commit: ws-axis/java/test/wsdl/schema2 Schema2ServiceSoapBindingImpl.java

dims        2005/01/19 18:38:11

  Modified:    java/test/wsdl/schema2 Schema2ServiceSoapBindingImpl.java
  Log:
  fix return values
  
  Revision  Changes    Path
  1.2       +3 -3      ws-axis/java/test/wsdl/schema2/Schema2ServiceSoapBindingImpl.java
  
  Index: Schema2ServiceSoapBindingImpl.java
  ===================================================================
  RCS file: /home/cvs/ws-axis/java/test/wsdl/schema2/Schema2ServiceSoapBindingImpl.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Schema2ServiceSoapBindingImpl.java	18 Jan 2005 03:38:02 -0000	1.1
  +++ Schema2ServiceSoapBindingImpl.java	20 Jan 2005 02:38:11 -0000	1.2
  @@ -57,15 +57,15 @@
       }
   
       public java.math.BigInteger echoNegativeIntegerTest(java.math.BigInteger negativeInteger) throws java.rmi.RemoteException {
  -        return null;
  +        return negativeInteger;
       }
   
       public java.util.Calendar echoTimeTest(java.util.Calendar time) throws java.rmi.RemoteException {
  -        return null;
  +        return time;
       }
   
       public java.util.Calendar echoDateTest(java.util.Calendar date) throws java.rmi.RemoteException {
  -        return null;
  +        return date;
       }
   
   }