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

Unified Diff: frog/file_system_vm.dart

Issue 8437090: Change the handling of closing sockets (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments by ager@ Created 9 years, 1 month 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 | runtime/bin/eventhandler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/file_system_vm.dart
diff --git a/frog/file_system_vm.dart b/frog/file_system_vm.dart
index 7dde08c936e256e0b1a6a43a08e90782e76993ba..29c1c59b51cdb6d3cf5f680bfca2e4f5d0b28b01 100644
--- a/frog/file_system_vm.dart
+++ b/frog/file_system_vm.dart
@@ -11,7 +11,7 @@ class VMFileSystem implements FileSystem {
var f = new File(outfile);
var stream = f.openOutputStream();
stream.write(text.charCodes());
- stream.end();
+ stream.close();
}
String readAll(String filename) {
« no previous file with comments | « no previous file | runtime/bin/eventhandler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698