Fix type error in http_impl.dart.

BUG=

Review URL: https://codereview.chromium.org//25757009

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@28264 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
whesse@google.com 2013-10-04 13:01:48 +00:00
parent 92933070e8
commit a77536b83a

View file

@ -1570,7 +1570,7 @@ class _HttpClient implements HttpClient {
_HttpClientRequest previous) {
// If the new URI is relative (to either '/' or some sub-path),
// construct a full URI from the previous one.
URI resolved = previous.uri.resolveUri(uri);
Uri resolved = previous.uri.resolveUri(uri);
return openUrl(method, resolved).then((_HttpClientRequest request) {
// Only follow redirects if initial request did.
request.followRedirects = previous.followRedirects;