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

Unified Diff: runtime/lib/string_patch.dart

Issue 11414069: Make mappedBy lazy. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: Reupload due to error. Created 8 years, 1 month 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: runtime/lib/string_patch.dart
diff --git a/runtime/lib/string_patch.dart b/runtime/lib/string_patch.dart
index df0393db3f40a345623dddd1bf941d3eabc94e35..7157ff9a13acf736c68607440989e10bd0bcc209 100644
--- a/runtime/lib/string_patch.dart
+++ b/runtime/lib/string_patch.dart
@@ -9,7 +9,7 @@ patch class String {
}
patch class Strings {
- /* patch */ static String join(List<String> strings, String separator) {
+ /* patch */ static String join(Iterable<String> strings, String separator) {
return _StringBase.join(strings, separator);
}

Powered by Google App Engine
This is Rietveld 408576698