[jboss-cvs] JBossCache/src/org/jboss/cache/marshall ...

Brian Stansberry brian.stansberry at jboss.com
Thu May 17 14:49:12 EDT 2007


  User: bstansberry
  Date: 07/05/17 14:49:12

  Modified:    src/org/jboss/cache/marshall  MethodDeclarations.java
  Log:
  [JBCACHE-1062] Use Address not IpAddress
  
  Revision  Changes    Path
  1.39      +2 -3      JBossCache/src/org/jboss/cache/marshall/MethodDeclarations.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MethodDeclarations.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/marshall/MethodDeclarations.java,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -b -r1.38 -r1.39
  --- MethodDeclarations.java	19 Mar 2007 19:03:33 -0000	1.38
  +++ MethodDeclarations.java	17 May 2007 18:49:12 -0000	1.39
  @@ -18,7 +18,6 @@
   import org.jboss.cache.rpc.RpcTreeCache;
   import org.jboss.cache.transaction.GlobalTransaction;
   import org.jgroups.Address;
  -import org.jgroups.stack.IpAddress;
   
   import java.lang.reflect.Method;
   import java.util.HashMap;
  @@ -32,7 +31,7 @@
    * allowing lookup operations both ways.
    *
    * @author <a href="galder.zamarreno at jboss.com">Galder Zamarreno</a>
  - * @version $Revision: 1.38 $
  + * @version $Revision: 1.39 $
    */
   public class MethodDeclarations
   {
  @@ -270,7 +269,7 @@
   
            // ------------ buddy replication
   
  -         remoteAnnounceBuddyPoolNameMethod = CacheImpl.class.getDeclaredMethod("_remoteAnnounceBuddyPoolName", IpAddress.class, String.class);
  +         remoteAnnounceBuddyPoolNameMethod = CacheImpl.class.getDeclaredMethod("_remoteAnnounceBuddyPoolName", Address.class, String.class);
            remoteRemoveFromBuddyGroupMethod = CacheImpl.class.getDeclaredMethod("_remoteRemoveFromBuddyGroup", String.class);
            remoteAssignToBuddyGroupMethod = CacheImpl.class.getDeclaredMethod("_remoteAssignToBuddyGroup", BuddyGroup.class, Map.class);
   
  
  
  



More information about the jboss-cvs-commits mailing list