Fixed Crash in storage code.
This commit is contained in:
Vendored
+7
-5
@@ -110,11 +110,13 @@ public class GridStorageCache implements IStorageGrid
|
|||||||
for (ICellContainer cc : ll)
|
for (ICellContainer cc : ll)
|
||||||
{
|
{
|
||||||
IGridNode node = cc.getActionableNode();
|
IGridNode node = cc.getActionableNode();
|
||||||
|
if ( node != null )
|
||||||
if ( node.isActive() )
|
{
|
||||||
addCell( node, cc );
|
if ( node.isActive() )
|
||||||
else
|
addCell( node, cc );
|
||||||
rmvCell( node, cc );
|
else
|
||||||
|
rmvCell( node, cc );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
itemMonitor.forceUpdate();
|
itemMonitor.forceUpdate();
|
||||||
|
|||||||
Reference in New Issue
Block a user