Commit c1f76317 by Bryce McKinlay Committed by Bryce McKinlay

From Gregory R. Warnes <warnes@biostat.washington.edu>:

	* gnu/gcj/protocol/jar/Connection.java (getJarFile): Test for null
	`jarFile', not `jarFileURL'.

From-SVN: r34005
parent 2838397c
......@@ -5,6 +5,10 @@
jobject.
* gnu/gcj/RawData.java: Clarify documentation.
From Gregory R. Warnes <warnes@biostat.washington.edu>:
* gnu/gcj/protocol/jar/Connection.java (getJarFile): Test for null
`jarFile', not `jarFileURL'.
2000-05-15 Andrew Haley <aph@cygnus.com>
* include/ppc-signal.h: New file.
......
......@@ -59,7 +59,7 @@ public class Connection extends JarURLConnection
if (getUseCaches())
{
jarfile = (JarFile) file_cache.get(jarFileURL);
if (jarFileURL == null)
if (jarFile == null)
{
jarfile = new JarFile (jarFileURL.getFile ());
file_cache.put (jarFileURL, jarfile);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment