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

Unified Diff: utils/lib/file_system.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 | « utils/apidoc/html_diff.dart ('k') | utils/peg/pegparser.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/lib/file_system.dart
diff --git a/utils/lib/file_system.dart b/utils/lib/file_system.dart
index 7b8da62b0d2f24d472b59d56592398b0f2733dd1..306be7a785ce4ced6d923f2243155845a16aacdf 100644
--- a/utils/lib/file_system.dart
+++ b/utils/lib/file_system.dart
@@ -47,7 +47,7 @@ String joinPaths(String path1, String path2) {
pieces.add(piece);
}
}
- return Strings.join(pieces, '/');
+ return pieces.join('/');
}
/** Returns the directory name for the [path]. */
« no previous file with comments | « utils/apidoc/html_diff.dart ('k') | utils/peg/pegparser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698