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

Elias Ross genman at noderunner.net
Tue Jan 16 20:31:07 EST 2007


  User: genman  
  Date: 07/01/16 20:31:07

  Modified:    src/org/jboss/cache/rpc  RpcTreeCache.java
  Log:
  Restrict visibility in CacheImpl of methods and members
  
  Revision  Changes    Path
  1.15      +8 -0      JBossCache/src/org/jboss/cache/rpc/RpcTreeCache.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: RpcTreeCache.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/rpc/RpcTreeCache.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -b -r1.14 -r1.15
  --- RpcTreeCache.java	11 Jan 2007 12:24:15 -0000	1.14
  +++ RpcTreeCache.java	17 Jan 2007 01:31:07 -0000	1.15
  @@ -1,9 +1,12 @@
   package org.jboss.cache.rpc;
   
  +import org.apache.commons.logging.Log;
  +import org.apache.commons.logging.LogFactory;
   import org.jboss.cache.CacheImpl;
   import org.jboss.cache.config.Configuration;
   import org.jboss.cache.marshall.MethodCall;
   import org.jboss.cache.marshall.MethodCallFactory;
  +import org.jboss.cache.pojo.PojoTreeCache;
   
   import java.lang.reflect.Method;
   import java.util.ArrayList;
  @@ -38,6 +41,11 @@
   {
   
      /**
  +    * PojoTreeCache log.
  +    */
  +   private final static Log log = LogFactory.getLog(RpcTreeCache.class);
  +
  +   /**
       * The {@link #_dispatchRpcCall(String,MethodCall)} method
       */
      public static final Method dispatchRpcCallMethod;
  
  
  



More information about the jboss-cvs-commits mailing list