[jboss-cvs] JBossCache/src/org/jboss/cache ...
Brian Stansberry
brian.stansberry at jboss.com
Sat Nov 18 04:31:01 EST 2006
User: bstansberry
Date: 06/11/18 04:31:01
Modified: src/org/jboss/cache TreeCacheProxyImpl.java
Log:
Avoid NPE
Revision Changes Path
1.50 +2 -1 JBossCache/src/org/jboss/cache/TreeCacheProxyImpl.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: TreeCacheProxyImpl.java
===================================================================
RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/TreeCacheProxyImpl.java,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -b -r1.49 -r1.50
--- TreeCacheProxyImpl.java 15 Nov 2006 17:06:30 -0000 1.49
+++ TreeCacheProxyImpl.java 18 Nov 2006 09:31:01 -0000 1.50
@@ -241,6 +241,7 @@
if (recursive)
{
NodeImpl n = treeCache.get(fqn);
+ if (n != null)
evictChildren(n);
}
else
More information about the jboss-cvs-commits
mailing list