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

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

Issue 1838933003: Format code in analysis_server (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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 | pkg/analysis_server/lib/plugin/edit/assist/assist_core.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 bfa5eb9567f3ae868d34a95a2a84a71e2aaf8d19..c355ed82166b8fbac23ab4b3a3278ebd00b266a4 100644
--- a/pkg/analysis_server/benchmark/integration/local_runner.dart
+++ b/pkg/analysis_server/benchmark/integration/local_runner.dart
@@ -17,8 +17,8 @@ main(List<String> args) {
if (args.length < 3) printHelp('Expected 3 arguments');
var gitDir = new Directory(args[0]);
if (!gitDir.existsSync()) printHelp('${gitDir.path} does not exist');
- if (!new Directory(join(gitDir.path, '.git')).existsSync()) printHelp(
- '${gitDir.path} does not appear to be a local git repository');
+ if (!new Directory(join(gitDir.path, '.git')).existsSync())
+ printHelp('${gitDir.path} does not appear to be a local git repository');
var branch = args[1];
var inputFile = new File(args[2]);
if (!inputFile.existsSync()) printHelp('${inputFile.path} does not exist');
« no previous file with comments | « no previous file | pkg/analysis_server/lib/plugin/edit/assist/assist_core.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698