From 4179bd7601be301f34cc1ebeaa4dbfda69b470be Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Mon, 7 Nov 2016 10:59:22 -0800 Subject: [PATCH] Apply codec change from fb968553 to DDC copy Closes https://github.com/dart-lang/sdk/pull/27724 R=jmesserly@google.com Review URL: https://codereview.chromium.org/2481703003 . --- pkg/dev_compiler/tool/input_sdk/lib/convert/codec.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/dev_compiler/tool/input_sdk/lib/convert/codec.dart b/pkg/dev_compiler/tool/input_sdk/lib/convert/codec.dart index 3fc2d31256c..7f42c862357 100644 --- a/pkg/dev_compiler/tool/input_sdk/lib/convert/codec.dart +++ b/pkg/dev_compiler/tool/input_sdk/lib/convert/codec.dart @@ -62,8 +62,8 @@ abstract class Codec { */ // TODO(floitsch): use better example with line-splitter once that one is // in this library. - Codec fuse(Codec other) { - return new _FusedCodec(this, other); + Codec fuse/**/(Codec other) { + return new _FusedCodec(this, other); } /**