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

Unified Diff: sdk/lib/collection/queue.dart

Issue 2764943002: Fix some strong mode issues in the core libraries. (Closed)
Patch Set: Fix another type issue. Created 3 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
Index: sdk/lib/collection/queue.dart
diff --git a/sdk/lib/collection/queue.dart b/sdk/lib/collection/queue.dart
index 90d6c4081f29bb6959b67eb69a91d1f34388cfba..0347943a0ab932c4f0c98b6004dda34d6537ce79 100644
--- a/sdk/lib/collection/queue.dart
+++ b/sdk/lib/collection/queue.dart
@@ -94,7 +94,7 @@ abstract class Queue<E> implements EfficientLengthIterable<E> {
void clear();
}
-class _DoubleLink<Link extends _DoubleLink> {
+class _DoubleLink<Link extends _DoubleLink<Link>> {
Link _previousLink;
Link _nextLink;

Powered by Google App Engine
This is Rietveld 408576698