| Index: runtime/bin/http_impl.dart
|
| diff --git a/runtime/bin/http_impl.dart b/runtime/bin/http_impl.dart
|
| index 52d27193375a0be27e2e83d905c1d1d21f09ad6e..cbfa7de120b8703120c8fb553f22789d0b0744d2 100644
|
| --- a/runtime/bin/http_impl.dart
|
| +++ b/runtime/bin/http_impl.dart
|
| @@ -427,7 +427,8 @@ class _HeaderValue implements HeaderValue {
|
|
|
|
|
| class _ContentType extends _HeaderValue implements ContentType {
|
| - _ContentType([String this._primaryType = "", String this._subType = ""]);
|
| + _ContentType([String primaryType = "", String subType = ""])
|
| + : _primaryType = primaryType, _subType = subType;
|
|
|
| _ContentType.fromString(String value) : super.fromString(value);
|
|
|
|
|