| Index: sdk/lib/core/uri.dart
|
| diff --git a/sdk/lib/core/uri.dart b/sdk/lib/core/uri.dart
|
| index 85e76bac920e693e5366458b952c3b08af1d75e4..30057f1132e5fc0952ffa3172755189f76a71116 100644
|
| --- a/sdk/lib/core/uri.dart
|
| +++ b/sdk/lib/core/uri.dart
|
| @@ -158,7 +158,7 @@ class Uri {
|
| this.host: "",
|
| port: 0,
|
| String path,
|
| - List<String> pathSegments,
|
| + Iterable<String> pathSegments,
|
| String query,
|
| Map<String, String> queryParameters,
|
| fragment: ""}) :
|
| @@ -501,7 +501,7 @@ class Uri {
|
| return allLowercase ? scheme : scheme.toLowerCase();
|
| }
|
|
|
| - String _makePath(String path, List<String> pathSegments) {
|
| + String _makePath(String path, Iterable<String> pathSegments) {
|
| if (path == null && pathSegments == null) return "";
|
| if (path != null && pathSegments != null) {
|
| throw new ArgumentError('Both path and pathSegments specified');
|
|
|