mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-23 02:04:25 +08:00
From Gregory R. Warnes <warnes@biostat.washington.edu>:
* gnu/gcj/protocol/jar/Connection.java (getJarFile): Test for null `jarFile', not `jarFileURL'. From-SVN: r34005
This commit is contained in:
parent
2838397ce2
commit
c1f76317e4
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user