Skip to content

Commit

Permalink
Revert my last patch
Browse files Browse the repository at this point in the history
	Not only it didn't fix anything but it broke a test.
  • Loading branch information
gonzalop authored and Andrew Jorgensen committed Sep 17, 2010
1 parent 9561764 commit ef47ac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mcs/class/System/System.Net/WebRequest.cs
Expand Up @@ -286,7 +286,7 @@ public static WebRequest Create (Uri requestUri)
{
if (requestUri == null)
throw new ArgumentNullException ("requestUri");
return GetCreator (requestUri.Scheme).Create (requestUri);
return GetCreator (requestUri.AbsoluteUri).Create (requestUri);
}

public static WebRequest CreateDefault (Uri requestUri)
Expand Down

0 comments on commit ef47ac3

Please sign in to comment.