| Index: tool/input_sdk/lib/core/uri.dart
|
| diff --git a/tool/input_sdk/lib/core/uri.dart b/tool/input_sdk/lib/core/uri.dart
|
| index fdd495233ddf3cdf98b8f3355ab1af110236d58d..a6c69bb457b96053d6e49ee901febecd40338263 100644
|
| --- a/tool/input_sdk/lib/core/uri.dart
|
| +++ b/tool/input_sdk/lib/core/uri.dart
|
| @@ -944,9 +944,10 @@ class Uri {
|
| : path;
|
| _pathSegments = new UnmodifiableListView(
|
| pathToSplit == "" ? const<String>[]
|
| - : pathToSplit.split("/")
|
| - .map(Uri.decodeComponent)
|
| - .toList(growable: false));
|
| + : new List<String>.from(
|
| + pathToSplit.split("/")
|
| + .map(Uri.decodeComponent),
|
| + growable: false));
|
| }
|
| return _pathSegments;
|
| }
|
|
|