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

Unified Diff: sdk/lib/io/directory_impl.dart

Issue 25553002: Fix breakage from r28097 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix break in docgen test. Created 7 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
« no previous file with comments | « runtime/bin/directory_macos.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/directory_impl.dart
diff --git a/sdk/lib/io/directory_impl.dart b/sdk/lib/io/directory_impl.dart
index 0f81fe27c2bed12ea8465f48cc38132229464b4c..ac048de8887557c774eb7815f9c9eeab6341dbf5 100644
--- a/sdk/lib/io/directory_impl.dart
+++ b/sdk/lib/io/directory_impl.dart
@@ -192,7 +192,7 @@ class _Directory extends FileSystemEntity implements Directory {
return _IOService.dispatch(_DIRECTORY_CREATE_SYSTEM_TEMP,
[template]).then((response) {
if (response is List && response[0] != _SUCCESS_RESPONSE) {
- throw new Directory(template)._exceptionOrErrorFromResponse(
+ throw new _Directory(template)._exceptionOrErrorFromResponse(
response, "Creation of temporary directory failed");
}
return new Directory(response);
« no previous file with comments | « runtime/bin/directory_macos.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698