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

Unified Diff: lib/utf/utf32.dart

Issue 9861011: - Remove type arguments from internal classes and interfaces. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 9 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 | « lib/utf/utf16.dart ('k') | lib/utf/utf8.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/utf/utf32.dart
===================================================================
--- lib/utf/utf32.dart (revision 5917)
+++ lib/utf/utf32.dart (working copy)
@@ -189,12 +189,12 @@
/**
* Abstrace parent class converts encoded bytes to codepoints.
*/
-class Utf32BytesDecoder implements _ListRangeIterator<int> {
- final _ListRangeIterator<int> utf32EncodedBytesIterator;
+class Utf32BytesDecoder implements _ListRangeIterator {
+ final _ListRangeIterator utf32EncodedBytesIterator;
final int replacementCodepoint;
Utf32BytesDecoder._fromListRangeIterator(
- _ListRangeIterator<int> this.utf32EncodedBytesIterator,
+ _ListRangeIterator this.utf32EncodedBytesIterator,
int this.replacementCodepoint);
factory Utf32BytesDecoder(List<int> utf32EncodedBytes, [
« no previous file with comments | « lib/utf/utf16.dart ('k') | lib/utf/utf8.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698