[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting ...

Tom Elrod tom.elrod at jboss.com
Mon Mar 19 23:18:41 EDT 2007


  User: telrod  
  Date: 07/03/19 23:18:41

  Modified:    src/main/org/jboss/remoting   Tag: remoting_2_x Version.java
                        Client.java
  Log:
  Updates for 2.2.0.GA release.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.12.2.6  +3 -2      JBossRemoting/src/main/org/jboss/remoting/Version.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Version.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/Version.java,v
  retrieving revision 1.12.2.5
  retrieving revision 1.12.2.6
  diff -u -b -r1.12.2.5 -r1.12.2.6
  --- Version.java	26 Feb 2007 16:43:43 -0000	1.12.2.5
  +++ Version.java	20 Mar 2007 03:18:41 -0000	1.12.2.6
  @@ -30,9 +30,10 @@
      // possible remoting versions
      public static final byte VERSION_1 = 1;
      public static final byte VERSION_2 = 2;
  +   public static final byte VERSION_2_2 = 22;
   
  -   public static final String VERSION = "2.2.0 Beta1 (Bluto)";
  -   private static final byte byteVersion = VERSION_2;
  +   public static final String VERSION = "2.2.0 GA (Bluto)";
  +   private static final byte byteVersion = VERSION_2_2;
      private static byte defaultByteVersion = byteVersion;
      private static boolean performVersioning = true;
   
  
  
  
  1.53.2.29 +6 -5      JBossRemoting/src/main/org/jboss/remoting/Client.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Client.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/Client.java,v
  retrieving revision 1.53.2.28
  retrieving revision 1.53.2.29
  diff -u -b -r1.53.2.28 -r1.53.2.29
  --- Client.java	15 Mar 2007 07:57:17 -0000	1.53.2.28
  +++ Client.java	20 Mar 2007 03:18:41 -0000	1.53.2.29
  @@ -66,7 +66,7 @@
    * @author <a href="mailto:telrod at e2technologies.net">Tom Elrod</a>
    * @author <a href="mailto:ovidiu at jboss.org">Ovidiu Feodorov</a>
    *
  - * @version $Revision: 1.53.2.28 $
  + * @version $Revision: 1.53.2.29 $
    */
   public class Client implements Externalizable
   {
  @@ -288,6 +288,7 @@
         switch (version)
         {
            case Version.VERSION_2:
  +         case Version.VERSION_2_2:
            {
               this.locator = (InvokerLocator) in.readObject();
               this.subsystem = (String) in.readObject();
  
  
  



More information about the jboss-cvs-commits mailing list