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

Manik Surtani manik at jboss.org
Mon Jun 11 11:06:07 EDT 2007


  User: msurtani
  Date: 07/06/11 11:06:07

  Modified:    src/org/jboss/cache/jmx  CacheNotificationListener.java
  Log:
  generics-related tweaks
  
  Revision  Changes    Path
  1.6       +17 -17    JBossCache/src/org/jboss/cache/jmx/CacheNotificationListener.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CacheNotificationListener.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/jmx/CacheNotificationListener.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- CacheNotificationListener.java	4 Jun 2007 22:56:16 -0000	1.5
  +++ CacheNotificationListener.java	11 Jun 2007 15:06:07 -0000	1.6
  @@ -37,7 +37,7 @@
    * events.
    *
    * @author <a href="brian.stansberry at jboss.com">Brian Stansberry</a>
  - * @version $Revision: 1.5 $
  + * @version $Revision: 1.6 $
    */
   public class CacheNotificationListener implements CacheListener
   {
  @@ -176,14 +176,14 @@
         broadcaster.sendNotification(n);
      }
   
  -   public void nodeActivated(Fqn fqn, boolean pre, Map<Object, Object> data)
  +   public void nodeActivated(Fqn fqn, boolean pre, Map data)
      {
         Notification n = new Notification(CacheNotificationBroadcaster.NOTIF_NODE_ACTIVATED, broadcaster, seq(), MSG_NODE_ACTIVATED);
         n.setUserData(new Object[]{fqn.toString(), pre});
         broadcaster.sendNotification(n);
      }
   
  -   public void nodePassivated(Fqn fqn, boolean pre, Map<Object, Object> data)
  +   public void nodePassivated(Fqn fqn, boolean pre, Map data)
      {
         Notification n = new Notification(CacheNotificationBroadcaster.NOTIF_NODE_PASSIVATED, broadcaster, seq(), MSG_NODE_PASSIVATED);
         n.setUserData(new Object[]{fqn.toString(), pre});
  
  
  



More information about the jboss-cvs-commits mailing list