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

Unified Diff: pkg/analysis_server/benchmark/integration/local_runner.dart

Issue 1310263003: Reformat code to minimize churn (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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: pkg/analysis_server/benchmark/integration/local_runner.dart
diff --git a/pkg/analysis_server/benchmark/integration/local_runner.dart b/pkg/analysis_server/benchmark/integration/local_runner.dart
index 78d8c2a78f0048b2a86a98b55b0f3a4e05db17bf..bd0ff6b07df09b9c768a62bcb0558ee898542292 100644
--- a/pkg/analysis_server/benchmark/integration/local_runner.dart
+++ b/pkg/analysis_server/benchmark/integration/local_runner.dart
@@ -51,11 +51,8 @@ main(List<String> args) {
if (!new Directory(join(gitDir.path, outDirName)).existsSync()) {
throw 'failed to find out or xcodebuild directory';
}
- result = Process.runSync('ln', [
- '-s',
- join(gitDir.path, outDirName),
- join(tmpSrcDirPath, outDirName)
- ]);
+ result = Process.runSync('ln',
+ ['-s', join(gitDir.path, outDirName), join(tmpSrcDirPath, outDirName)]);
if (result.exitCode != 0) throw 'failed to link out or xcodebuild: $result';
/*
* Collect arguments

Powered by Google App Engine
This is Rietveld 408576698