205206207208209210211212213214215
return context.getVFS(); if (context != null) { registry.removeContext(context); context.cleanup(); } context = factory.getVFS(rootURI); // create new VFSRegistry.getInstance().addContext(context); return context.getVFS();
4748495051525354555657
protected void ageOut(LRUCacheEntry entry) { try { VFSContext context = (VFSContext) entry.m_object; context.cleanup(); } catch (Exception e) { log.debug("Error cleaning up: " + e); }