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

Manik Surtani manik at jboss.org
Fri Jun 8 11:52:15 EDT 2007


  User: msurtani
  Date: 07/06/08 11:52:15

  Modified:    src/org/jboss/cache/buddyreplication  BuddyManager.java
  Log:
  Protected ctor for MethodCall, vararg ctors
  
  Revision  Changes    Path
  1.79      +1 -1      JBossCache/src/org/jboss/cache/buddyreplication/BuddyManager.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: BuddyManager.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/buddyreplication/BuddyManager.java,v
  retrieving revision 1.78
  retrieving revision 1.79
  diff -u -b -r1.78 -r1.79
  --- BuddyManager.java	6 Jun 2007 12:43:50 -0000	1.78
  +++ BuddyManager.java	8 Jun 2007 15:52:15 -0000	1.79
  @@ -623,7 +623,7 @@
      {
         if (call != null && call.getArgs() != null)
         {
  -         MethodCall call2 = new MethodCall(call.getMethod(), call.getArgs().clone(), call.getMethodId());
  +         MethodCall call2 = MethodCallFactory.create(call.getMethod(), call.getArgs().clone());
            handleArgs(call2.getArgs(), transformForCurrentCall);
            return call2;
         }
  
  
  



More information about the jboss-cvs-commits mailing list