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

Unified Diff: tools/test.dart

Issue 2827793002: Format all files under tools and utils directory. (Closed)
Patch Set: Format all files under tools and utils directory. Created 3 years, 8 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 | « tools/status_clean.dart ('k') | tools/testing/dart/android.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/test.dart
diff --git a/tools/test.dart b/tools/test.dart
index c66489e4f681d63d081e1c9008451c848b32239c..9d3a1ca835bcd277d256368acd1f7efa48496cc0 100755
--- a/tools/test.dart
+++ b/tools/test.dart
@@ -42,13 +42,13 @@ Future _deleteTemporaryDartDirectories() {
if (environment['DART_TESTING_DELETE_TEMPORARY_DIRECTORIES'] == '1') {
LeftOverTempDirPrinter.getLeftOverTemporaryDirectories().listen(
(FileSystemEntity tempEntity) {
- Directory tempDirectory = tempEntity as Directory;
- try {
- tempDirectory.deleteSync(recursive: true);
- } catch (error) {
- DebugLogger.error(error);
- }
- }, onDone: completer.complete);
+ Directory tempDirectory = tempEntity as Directory;
+ try {
+ tempDirectory.deleteSync(recursive: true);
+ } catch (error) {
+ DebugLogger.error(error);
+ }
+ }, onDone: completer.complete);
} else {
completer.complete();
}
« no previous file with comments | « tools/status_clean.dart ('k') | tools/testing/dart/android.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698