275276277278279280281282283284285
{ c = ( ICache ) caches.get( name ); } if ( c != null ) { c.dispose(); } } /** Description of the Method */ public void release()
297298299300301302303304305306307
ICache c = ( ICache ) allCaches.next(); if ( c != null ) { try { c.dispose(); } catch ( IOException ex ) { log.error( ex ); }
908909910911912913914915916917918
// FIXME: Why not always call it? if ( aux.getCacheType() == ICache.DISK_CACHE ) { aux.dispose(); } } catch ( IOException ex ) {
193194195196197198199200201202203
if ( cache != null ) { try { cache.dispose(); } catch ( Exception e ) { log.error( "Failure disposing cache: " + cacheName, e ); }
237238239240241242243244245246247
if ( cache != null ) { try { cache.dispose(); } catch ( Exception e ) { log.error( "Failure disposing cache: " + cache.getCacheName(), e );
295296297298299300301302303304305
317318319320321322323324325326327
155156157158159160161162163164165
199200201202203204205206207208209
if ( cache != null ) { try { cache.dispose(); } catch ( Exception e ) { log.error( "Failure disposing cache: " + cache.getCacheName(), e ); }
938939940941942943944945946947948
log.info( "In DISPOSE, [" + this.cacheName + "] put " + numToFree + " into auxiliary " + aux ); } } // Dispose of the auxiliary aux.dispose(); } catch ( IOException ex ) { log.error( "Failure disposing of aux.", ex ); }