URL:
http://svn.apache.org/viewvc/ant/core/trunk/src/main/org/apache/tools/ant/types/resources/URLResource.java?view=diff&rev=450863&r1=450862&r2=450863============================================================================== --- ant/core/trunk/src/main/org/apache/tools/ant/types/resources/URLResource.java (original) +++ ant/core/trunk/src/main/org/apache/tools/ant/types/resources/URLResource.java Thu Sep 28 07:23:26 2006 @@ -361,7 +361,6 @@ * @throws Throwable on error. */ protected void finalize() throws Throwable { - close(); conn = null; super.finalize(); }
My advice would be to remove the finalize method completely. Having a finalize method is not good practice - it interacts badly with GC. the current version of this method in effect does nothing except trying to "help" gc. see: http://devresource.hp.com/drc/resources/jmemmodel/index.jsp ---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
