Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Unified Diff: sdk/lib/convert/codec.dart

Issue 1964953003: Make dart:convert strong mode clean. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Remove unnecessary dynamics. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/convert/chunked_conversion.dart ('k') | sdk/lib/convert/converter.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/convert/codec.dart
diff --git a/sdk/lib/convert/codec.dart b/sdk/lib/convert/codec.dart
index 1afe63a7105c3c8965525256fd5117a3647412b4..3fc2d31256c8d5afc075377814125cdb070a1557 100644
--- a/sdk/lib/convert/codec.dart
+++ b/sdk/lib/convert/codec.dart
@@ -84,8 +84,8 @@ class _FusedCodec<S, M, T> extends Codec<S, T> {
final Codec<S, M> _first;
final Codec<M, T> _second;
- Converter<S, T> get encoder => _first.encoder.fuse(_second.encoder);
- Converter<T, S> get decoder => _second.decoder.fuse(_first.decoder);
+ Converter<S, T> get encoder => _first.encoder.fuse/*<T>*/(_second.encoder);
+ Converter<T, S> get decoder => _second.decoder.fuse/*<S>*/(_first.decoder);
_FusedCodec(this._first, this._second);
}
« no previous file with comments | « sdk/lib/convert/chunked_conversion.dart ('k') | sdk/lib/convert/converter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698