Does anyone know why the update method of
MRUMemoryCache expects keys to be of type String?

This is the code I am referring to:
synchronized ( lockMe )
{
   map.put( key, ce );
   if ( replace )
   {
     // the slowest method I've ever seen
     mrulist.remove( ( String ) key );
   }
   mrulist.addFirst( ( String ) key );
}

Thanks,
Snehal

__________________________________
Do you Yahoo!?
Protect your identity with Yahoo! Mail AddressGuard
http://antispam.yahoo.com/whatsnewfree

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to