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

Manik Surtani manik at jboss.org
Fri Jun 1 11:08:09 EDT 2007


  User: msurtani
  Date: 07/06/01 11:08:09

  Modified:    src/org/jboss/cache/notifications  Notifier.java
  Log:
  Fixed reflection issue
  
  Revision  Changes    Path
  1.25      +2 -2      JBossCache/src/org/jboss/cache/notifications/Notifier.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Notifier.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/notifications/Notifier.java,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -b -r1.24 -r1.25
  --- Notifier.java	30 May 2007 11:35:15 -0000	1.24
  +++ Notifier.java	1 Jun 2007 15:08:09 -0000	1.25
  @@ -64,8 +64,8 @@
            nodeVisited = CacheListener.class.getMethod("nodeVisited", Fqn.class, boolean.class);
            nodeEvicted = CacheListener.class.getMethod("nodeEvicted", Fqn.class, boolean.class, boolean.class);
            nodeLoaded = CacheListener.class.getMethod("nodeLoaded", Fqn.class, boolean.class, Map.class);
  -         nodePassivated = CacheListener.class.getMethod("nodePassivated", Fqn.class, boolean.class);
  -         nodeActivated = CacheListener.class.getMethod("nodeActivated", Fqn.class, boolean.class);
  +         nodePassivated = CacheListener.class.getMethod("nodePassivated", Fqn.class, boolean.class, Map.class);
  +         nodeActivated = CacheListener.class.getMethod("nodeActivated", Fqn.class, boolean.class, Map.class);
            nodeMoved = CacheListener.class.getMethod("nodeMoved", Fqn.class, Fqn.class, boolean.class, boolean.class);
            cacheStarted = CacheListener.class.getMethod("cacheStarted", CacheSPI.class);
            cacheStopped = CacheListener.class.getMethod("cacheStopped", CacheSPI.class);
  
  
  



More information about the jboss-cvs-commits mailing list