[jboss-cvs] JBossRemoting/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/socket ...

Ron Sigal ron_sigal at yahoo.com
Mon May 21 21:27:28 EDT 2007


  User: rsigal  
  Date: 07/05/21 21:27:28

  Modified:    src/tests/org/jboss/test/remoting/marshall/dynamic/remote/socket 
                        Tag: remoting_2_x TestMarshaller.java
  Log:
  JBREM-714:  Added version parameter to write().
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.2.10.1  +2 -2      JBossRemoting/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/socket/TestMarshaller.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: TestMarshaller.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/socket/TestMarshaller.java,v
  retrieving revision 1.2
  retrieving revision 1.2.10.1
  diff -u -b -r1.2 -r1.2.10.1
  --- TestMarshaller.java	30 Dec 2005 05:26:43 -0000	1.2
  +++ TestMarshaller.java	22 May 2007 01:27:28 -0000	1.2.10.1
  @@ -44,10 +44,10 @@
       * @param output     The data output to write the object
       *                   data to.
       */
  -   public void write(Object dataObject, OutputStream output) throws IOException
  +   public void write(Object dataObject, OutputStream output, int version) throws IOException
      {
         TestWrapper wrapper = new TestWrapper(dataObject);
  -      super.write(wrapper, output);
  +      super.write(wrapper, output, version);
      }
   
      public String getDataType()
  
  
  



More information about the jboss-cvs-commits mailing list