Chromium Code Reviews| Index: sdk/lib/core/uri.dart |
| diff --git a/sdk/lib/core/uri.dart b/sdk/lib/core/uri.dart |
| index 17f290d14e9be14108050c037aac48ff94348329..ba3d001633dc3579c0eef58425c71cbba2220814 100644 |
| --- a/sdk/lib/core/uri.dart |
| +++ b/sdk/lib/core/uri.dart |
| @@ -4207,7 +4207,7 @@ class _SimpleUri implements Uri { |
| if (fragment != null) { |
| fragment = _Uri._makeFragment(fragment, 0, fragment.length); |
| } else if (_fragmentStart < _uri.length) { |
| - fragment = _uri.substring(_fragmentStart); |
| + fragment = _uri.substring(_fragmentStart+1); |
|
Harry Terkelsen
2016/07/18 22:48:12
nit: spaces around '+'
keertip
2016/07/18 23:29:32
Done.
|
| } |
| return new _Uri._internal( |