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

Unified Diff: utils/pub/log.dart

Issue 12262056: Clean up some warnings and deprecated calls. (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/pub/io.dart ('k') | utils/pub/oauth2.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/log.dart
diff --git a/utils/pub/log.dart b/utils/pub/log.dart
index 06a474896e2aa4a297acd7da1759ac080216dbfa..9a555ea3d354c6495c507ab29526cc328cfe315a 100644
--- a/utils/pub/log.dart
+++ b/utils/pub/log.dart
@@ -110,7 +110,7 @@ Future ioAsync(String startMessage, Future operation,
/// Logs the spawning of an [executable] process with [arguments] at [IO]
/// level.
void process(String executable, List<String> arguments) {
- io("Spawning $executable ${Strings.join(arguments, ' ')}");
+ io("Spawning $executable ${arguments.join(' ')}");
}
/// Logs the results of running [executable].
« no previous file with comments | « utils/pub/io.dart ('k') | utils/pub/oauth2.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698