Author: manik.surtani(a)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)
{
Show replies by date