classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cp-patches] Trimming protocol in URL


From: Guilhem Lavaux
Subject: [cp-patches] Trimming protocol in URL
Date: Wed, 11 Aug 2004 09:38:04 +0200
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6) Gecko/20040115

Hi,

While I was writing the locale converter it has appeared that classpath was not accepting protocol with whitespaces like that " http" or tabs. When I try the same thing in the JDK it is accepted. So I propose this one line modification in java.net.URL:

--- java/net/URL.java   16 Jul 2004 09:39:55 -0000      1.35
+++ java/net/URL.java   11 Aug 2004 07:34:36 -0000
@@ -430,6 +430,8 @@

throw new MalformedURLException("Absolute URL required with null context");

+    protocol = protocol.trim();
+
    if (ph != null)
      {
       SecurityManager s = System.getSecurityManager();


I don't get any errors with this. If it's ok, I'll add a mauve test too.

Cheers,

Guilhem.

ChangeLog entry:

2004-08-11  Guilhem Lavaux  <address@hidden>

   * java/net/URL.java (URL): Delete whitespaces in the protocol string.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]