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

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

Issue 28943003: dart:io | Remove deprecated behavior of Directory('').createTemp, replaced by Directory.systemTemp. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | sdk/lib/io/directory_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/directory.dart
diff --git a/sdk/lib/io/directory.dart b/sdk/lib/io/directory.dart
index 80391d4e12257ce65fc691e8bea3e50c3b180560..95e6aa86ce831ecf844e290ee7093a3631faccb6 100644
--- a/sdk/lib/io/directory.dart
+++ b/sdk/lib/io/directory.dart
@@ -85,11 +85,6 @@ abstract class Directory implements FileSystemEntity {
*
* Returns a [:Future<Directory>:] that completes with the newly
* created temporary directory.
- *
- * Deprecated behavior, to be removed Oct 18, 2013: If the path is the
- * empty string, the directory is created in the default system temp
- * directory. This capability has been moved to the static getter
- * [systemTemp].
*/
Future<Directory> createTemp([String template]);
@@ -100,11 +95,6 @@ abstract class Directory implements FileSystemEntity {
* string is used for [prefix].
*
* Returns the newly created temporary directory.
- *
- * Deprecated behavior, to be removed Oct 18, 2013: If the path is the
- * empty string, the directory is created in the default system temp
- * directory. This capability has been moved to the static function
- * [createSystemTemp].
*/
Directory createTempSync([String template]);
« no previous file with comments | « no previous file | sdk/lib/io/directory_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698