Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
2.2.2, 2.3
-
None
-
Tested on Windows, but should appear also on UNIX platforms.
Description
See: http://uima.markmail.org/thread/4h7ljnaz26v4jicl
XmlInputSource.close() locks the JARs where a JARUrlConnection is used.
This bug is described in the SUN bug database: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4386865
To fix that we only have to insert the following lines before each 'URL.openStream()' call:
URLConnection urlConnection = mURL.openConnection();
if(urlConnection instanceof JarURLConnection)