[jbosscache-commits] JBoss Cache SVN: r5872 - core/trunk/src/main/java/org/jboss/cache/interceptors.

jbosscache-commits at lists.jboss.org jbosscache-commits at lists.jboss.org
Mon May 19 09:02:50 EDT 2008


Author: manik.surtani at jboss.com
Date: 2008-05-19 09:02:49 -0400 (Mon, 19 May 2008)
New Revision: 5872

Modified:
   core/trunk/src/main/java/org/jboss/cache/interceptors/PassivationInterceptor.java
Log:
Removed unused param

Modified: core/trunk/src/main/java/org/jboss/cache/interceptors/PassivationInterceptor.java
===================================================================
--- core/trunk/src/main/java/org/jboss/cache/interceptors/PassivationInterceptor.java	2008-05-19 11:50:41 UTC (rev 5871)
+++ core/trunk/src/main/java/org/jboss/cache/interceptors/PassivationInterceptor.java	2008-05-19 13:02:49 UTC (rev 5872)
@@ -74,7 +74,7 @@
       {
          // evict method local doesn't hold attributes therefore we have
          // to get them manually
-         Map attributes = getNodeAttributes(ctx, fqn);
+         Map attributes = getNodeAttributes(fqn);
          // notify listeners that this node is about to be passivated
          notifier.notifyNodePassivated(fqn, true, attributes, ctx);
          if (trace) log.trace("Passivating " + fqn);
@@ -113,7 +113,7 @@
    /**
     * Returns attributes for a node.
     */
-   private Map getNodeAttributes(InvocationContext ctx, Fqn fqn) throws NodeNotLoadedException
+   private Map getNodeAttributes(Fqn fqn) throws NodeNotLoadedException
    {
       if (fqn == null)
       {




More information about the jbosscache-commits mailing list