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

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

Issue 2705593002: Fix various nits in VM patch files. (Closed)
Patch Set: Address comments and issues found during testing. Created 3 years, 10 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/collection/collection.dart ('k') | sdk/lib/convert/string_conversion.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/collection/splay_tree.dart
diff --git a/sdk/lib/collection/splay_tree.dart b/sdk/lib/collection/splay_tree.dart
index ef646f3649728f102b3b569a9bfba29cd0040e63..276b108b80fb8006b5fe138e0b01577f46486c4f 100644
--- a/sdk/lib/collection/splay_tree.dart
+++ b/sdk/lib/collection/splay_tree.dart
@@ -15,7 +15,7 @@ class _SplayTreeNode<K> {
_SplayTreeNode<K> left;
_SplayTreeNode<K> right;
- _SplayTreeNode(K this.key);
+ _SplayTreeNode(this.key);
}
/**
@@ -25,7 +25,7 @@ class _SplayTreeNode<K> {
*/
class _SplayTreeMapNode<K, V> extends _SplayTreeNode<K> {
V value;
- _SplayTreeMapNode(K key, V this.value) : super(key);
+ _SplayTreeMapNode(K key, this.value) : super(key);
}
/**
« no previous file with comments | « sdk/lib/collection/collection.dart ('k') | sdk/lib/convert/string_conversion.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698