Port to JDK 1.4

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@587777 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Carlos Sanchez Gonzalez 2007-10-24 04:26:36 +00:00
parent 880785ac04
commit f4207feee2
1 changed files with 1 additions and 1 deletions

View File

@ -1054,7 +1054,7 @@ public class DefaultMavenProjectBuilder
URI uri = null;
try
{
uri = url.toURI();
uri = new URI( url.toString() );
reader = ReaderFactory.newXmlReader( url.openStream() );
return readModel( projectId, uri, reader, strict );
}