[jboss-cvs] JBossCache/src-50/org/jboss/cache/pojo/impl ...
Ben Wang
bwang at jboss.com
Thu Nov 16 01:46:58 EST 2006
User: bwang
Date: 06/11/16 01:46:58
Modified: src-50/org/jboss/cache/pojo/impl PojoCacheImpl.java
Log:
JBCACHE-720
Revision Changes Path
1.27 +4 -1 JBossCache/src-50/org/jboss/cache/pojo/impl/PojoCacheImpl.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: PojoCacheImpl.java
===================================================================
RCS file: /cvsroot/jboss/JBossCache/src-50/org/jboss/cache/pojo/impl/PojoCacheImpl.java,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -b -r1.26 -r1.27
--- PojoCacheImpl.java 10 Nov 2006 03:00:15 -0000 1.26
+++ PojoCacheImpl.java 16 Nov 2006 06:46:58 -0000 1.27
@@ -42,7 +42,7 @@
* Implementation class for PojoCache interface
*
* @author Ben Wang
- * @version $Id: PojoCacheImpl.java,v 1.26 2006/11/10 03:00:15 bstansberry Exp $
+ * @version $Id: PojoCacheImpl.java,v 1.27 2006/11/16 06:46:58 bwang Exp $
*/
public class PojoCacheImpl implements PojoCache, Observer
{
@@ -208,6 +208,9 @@
@Find
public Map findAll(Fqn id) throws PojoCacheException
{
+ // Should produce "/"
+ if(id == null) id = Fqn.fromString(null);
+
try
{
return delegate_.findObjects(id);
More information about the jboss-cvs-commits
mailing list