From 2450267957477b1f9976c36811e624eede14679f Mon Sep 17 00:00:00 2001 From: AlgorithmX2 Date: Wed, 9 Apr 2014 19:52:31 -0500 Subject: [PATCH] You don't have to be active to be removed, that's silly --- me/cache/GridStorageCache.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/me/cache/GridStorageCache.java b/me/cache/GridStorageCache.java index 5802bb2cb..34c842ef3 100644 --- a/me/cache/GridStorageCache.java +++ b/me/cache/GridStorageCache.java @@ -80,7 +80,7 @@ public class GridStorageCache implements IStorageGrid private void rmvCell(IGridNode node, ICellContainer cc) { - if ( node.isActive() && activeCellContainers.contains( cc ) ) + if ( activeCellContainers.contains( cc ) ) { inactiveCellContainers.add( cc ); activeCellContainers.remove( cc );