--- /home/cpdev/src/classpath/gnu/xml/dom/DomDocumentBuilder.java	2006-01-22 17:32:38.000000000 +0000
+++ gnu/xml/dom/DomDocumentBuilder.java	2005-09-14 21:51:27.000000000 +0000
@@ -1,5 +1,5 @@
 /* DomDocumentBuilder.java -- 
-   Copyright (C) 2004,2006 Free Software Foundation, Inc.
+   Copyright (C) 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -37,11 +37,9 @@
 
 package gnu.xml.dom;
 
-import java.io.File;
 import java.io.InputStream;
 import java.io.IOException;
 import java.io.Reader;
-import java.net.MalformedURLException;
 import java.net.URL;
 import javax.xml.parsers.DocumentBuilder;
 import org.w3c.dom.Document;
@@ -159,18 +157,8 @@
           }
         else
           {
-            try
-              {
-                URL url = new URL(systemId);
-                input.setByteStream(url.openStream());
-              }
-            catch (MalformedURLException e)
-              {
-                // Maybe this is a relative file URL
-                File cwd = new File(System.getProperty("user.dir"));
-                URL url = new URL(cwd.toURL(), systemId);
-                input.setByteStream(url.openStream());
-              }
+            URL url = new URL(systemId);
+            input.setByteStream(url.openStream());
           }
       }
     input.setPublicId(is.getPublicId());
