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

Unified Diff: runtime/lib/string_patch.dart

Issue 12295014: Remove deprecated Strings class. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « runtime/lib/string_buffer_patch.dart ('k') | samples/markdown/block_parser.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/string_patch.dart
diff --git a/runtime/lib/string_patch.dart b/runtime/lib/string_patch.dart
index 7157ff9a13acf736c68607440989e10bd0bcc209..6a9cf5497e5da5d3f3140c2b89f0cc9030ba0bf4 100644
--- a/runtime/lib/string_patch.dart
+++ b/runtime/lib/string_patch.dart
@@ -7,13 +7,3 @@ patch class String {
return _StringBase.createFromCharCodes(charCodes);
}
}
-
-patch class Strings {
- /* patch */ static String join(Iterable<String> strings, String separator) {
- return _StringBase.join(strings, separator);
- }
-
- /* patch */ static String concatAll(List<String> strings) {
- return _StringBase.concatAll(strings);
- }
-}
« no previous file with comments | « runtime/lib/string_buffer_patch.dart ('k') | samples/markdown/block_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698