DefaultDownloadManager.java line 110
Each call to download() creates a new temp file and registers it with deleteOnExit(). Over many invocations this causes the java.io.DeleteOnExitHook map to accumulate entries, which can lead to a memory leak and degraded JVM shutdown performance.
Bug #16
DefaultDownloadManager.javaline 110Each call to
download()creates a new temp file and registers it withdeleteOnExit(). Over many invocations this causes thejava.io.DeleteOnExitHookmap to accumulate entries, which can lead to a memory leak and degraded JVM shutdown performance.