fixed bug that broke user.cache.

This commit is contained in:
hns 2001-08-25 20:33:06 +00:00
parent be10ec1afc
commit 37a50b548f

View file

@ -50,6 +50,8 @@ public class ESUser extends ESNode {
else else
return new ESString (user.getSessionID ()); return new ESString (user.getSessionID ());
} }
if ("cache".equals (propname))
return cacheWrapper;
return super.getProperty (propname, hash); return super.getProperty (propname, hash);
} }