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

Unified Diff: corelib/src/strings.dart

Issue 10883052: Unify String. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add missing file. Created 8 years, 4 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: corelib/src/strings.dart
diff --git a/corelib/src/strings.dart b/corelib/src/strings.dart
index 9462ee10eb9fc7a76f7e98f8c04f0b095f4bab52..7f7fd1b7ca45928d3339c2d808830e9d5e4bd383 100644
--- a/corelib/src/strings.dart
+++ b/corelib/src/strings.dart
@@ -3,15 +3,6 @@
// BSD-style license that can be found in the LICENSE file.
class Strings {
Mads Ager (google) 2012/08/27 10:52:00 How about the remaining two methods in this class?
Anders Johnsen 2012/08/27 12:12:42 Right, now handled.
-
- /**
- * Factory implementation of String.fromCharCodes:
- * Allocates a new String for the specified [charCodes].
- */
- factory String.fromCharCodes(List<int> charCodes) {
- return StringBase.createFromCharCodes(charCodes);
- }
-
/**
* Joins all the given strings to create a new string.
*/

Powered by Google App Engine
This is Rietveld 408576698