| Index: sdk/lib/io/data_transformer.dart
|
| diff --git a/sdk/lib/io/data_transformer.dart b/sdk/lib/io/data_transformer.dart
|
| index fb3fbe49f9664746591ef4060968d08152838a44..79df03cc140dfac3b857a07f297157d3dd0f219d 100644
|
| --- a/sdk/lib/io/data_transformer.dart
|
| +++ b/sdk/lib/io/data_transformer.dart
|
| @@ -8,7 +8,7 @@ part of dart.io;
|
| /**
|
| * An instance of the default implementation of the [ZLibCodec].
|
| */
|
| -const ZLIB = const ZLibCodec();
|
| +const ZLibCodec ZLIB = const ZLibCodec();
|
|
|
|
|
| /**
|
| @@ -45,7 +45,7 @@ class ZLibCodec extends Codec<List<int>, List<int>> {
|
| /**
|
| * An instance of the default implementation of the [GZipCodec].
|
| */
|
| -const GZIP = const GZipCodec();
|
| +const GZipCodec GZIP = const GZipCodec();
|
|
|
|
|
| /**
|
|
|