aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/net/URLConnection.java
diff options
context:
space:
mode:
authorAndrew Haley <aph@redhat.com>2005-07-14 18:20:10 +0000
committerAndrew Haley <aph@gcc.gnu.org>2005-07-14 18:20:10 +0000
commit3fefd0193cc8dcd50fe626a9d81719ba3c845a2f (patch)
tree8de981c27b99e5f3550c9d6ebf969b8edaec99fa /libjava/java/net/URLConnection.java
parentb11e14262e1381cc7e7322aec4d5be27bb15529b (diff)
downloadgcc-3fefd0193cc8dcd50fe626a9d81719ba3c845a2f.zip
gcc-3fefd0193cc8dcd50fe626a9d81719ba3c845a2f.tar.gz
gcc-3fefd0193cc8dcd50fe626a9d81719ba3c845a2f.tar.bz2
Connection.java (unquote): New method.
2005-07-13 Andrew Haley <aph@redhat.com> * gnu/java/net/protocol/file/Connection.java (unquote): New method. (connect): Unquote filename. gnu/java/net/protocol/jar/Connection.java (getInputStream): Likewise. (getJarFile): Likewise. * java/net/URLConnection.java (getContentHandler): Guard cast with instaceof. * java/net/URL.java (URL): If the file part of a spec is absolute, ignore the file part of its context. From-SVN: r102029
Diffstat (limited to 'libjava/java/net/URLConnection.java')
-rw-r--r--libjava/java/net/URLConnection.java17
1 files changed, 11 insertions, 6 deletions
diff --git a/libjava/java/net/URLConnection.java b/libjava/java/net/URLConnection.java
index 5233a56..55b9d66 100644
--- a/libjava/java/net/URLConnection.java
+++ b/libjava/java/net/URLConnection.java
@@ -983,17 +983,22 @@ public abstract class URLConnection
if (contentType == null || contentType.equals(""))
return null;
- ContentHandler handler;
+ ContentHandler handler = null;
// See if a handler has been cached for this content type.
// For efficiency, if a content type has been searched for but not
// found, it will be in the hash table but as the contentType String
// instead of a ContentHandler.
- if ((handler = (ContentHandler) handlers.get(contentType)) != null)
- if (handler instanceof ContentHandler)
- return handler;
- else
- return null;
+ {
+ Object cachedHandler;
+ if ((cachedHandler = handlers.get(contentType)) != null)
+ {
+ if (cachedHandler instanceof ContentHandler)
+ return (ContentHandler)cachedHandler;
+ else
+ return null;
+ }
+ }
// If a non-default factory has been set, use it.
if (factory != null)