--- J Aaron Farr <[EMAIL PROTECTED]> wrote: > Apparently the attatchment didn't work right. Here's the patch file (I > hope). > :) > > jaaron >
My email client is acting buggy. One last try, this time cut and paste: FortressServiceManager ----[snip]----------------------------------------------------------------- 134c134 < m_used.put( component, handler ); --- > m_used.put( component.toString(), handler ); 165c165,167 < final ComponentHandler handler = (ComponentHandler)m_used.remove( component ); --- > final ComponentHandler handler = (ComponentHandler)m_used.remove( component.toString() ); ----[snip]----------------------------------------------------------------- Again, this change properly handles disposable components for me. Can anyone else confirm the use of disposable in Fortress? Thanks, jaaron __________________________________________________ Do you Yahoo!? Yahoo! Shopping - Send Flowers for Valentine's Day http://shopping.yahoo.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
