| Index: sdk/lib/io/directory_impl.dart
|
| diff --git a/sdk/lib/io/directory_impl.dart b/sdk/lib/io/directory_impl.dart
|
| index 4472fcb4d3550c3419c4794a3fb408cd5b6068e5..5429a294ecc96ca0fb92e0f02f8c6ce5456d573e 100644
|
| --- a/sdk/lib/io/directory_impl.dart
|
| +++ b/sdk/lib/io/directory_impl.dart
|
| @@ -168,8 +168,8 @@ class _Directory implements Directory {
|
| request[1] = _path;
|
| return _directoryService.call(request).then((response) {
|
| if (_isErrorResponse(response)) {
|
| - throw _exceptionOrErrorFromResponse(response,
|
| - "Creation of temporary directory failed");
|
| + throw _exceptionOrErrorFromResponse(
|
| + response, "Creation of temporary directory failed");
|
| }
|
| return new Directory(response);
|
| });
|
| @@ -182,8 +182,8 @@ class _Directory implements Directory {
|
| var result = _createTemp(path);
|
| if (result is OSError) {
|
| throw new DirectoryException("Creation of temporary directory failed",
|
| - _path,
|
| - result);
|
| + _path,
|
| + result);
|
| }
|
| return new Directory(result);
|
| }
|
|
|