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

Unified Diff: utils/pub/git.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 | « no previous file | utils/pub/git_source.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/pub/git.dart
diff --git a/utils/pub/git.dart b/utils/pub/git.dart
index 47519c221a6d6872a1a6cde3f810dbf8534cccba..53ecbe7826bde9f7d1c215d913ea514970c54bf2 100644
--- a/utils/pub/git.dart
+++ b/utils/pub/git.dart
@@ -28,8 +28,8 @@ Future<List<String>> run(List<String> args,
environment: environment);
}).then((result) {
if (!result.success) throw new Exception(
- 'Git error. Command: git ${Strings.join(args, " ")}\n'
- '${Strings.join(result.stderr, "\n")}');
+ 'Git error. Command: git ${args.join(" ")}\n'
+ '${result.stderr.join("\n")}');
return result.stdout;
});
« no previous file with comments | « no previous file | utils/pub/git_source.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698