From fb968553ae338da26346efaaa949c6a470be0d6f Mon Sep 17 00:00:00 2001 From: Florian Loitsch Date: Fri, 4 Nov 2016 10:19:03 +0100 Subject: [PATCH] Add generic argument to Codec.fuse. Fixes #27722 BUG= http://dartbug.com/27722 R=lrn@google.com Review URL: https://codereview.chromium.org/2472023004 . --- sdk/lib/convert/codec.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/lib/convert/codec.dart b/sdk/lib/convert/codec.dart index 3fc2d31256c..7f42c862357 100644 --- a/sdk/lib/convert/codec.dart +++ b/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); } /**