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

Unified Diff: runtime/bin/socket_stream.dart

Issue 8662004: Update test scripts to deal with current VM behavior on optional constructor arguments. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments 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 | tests/standalone/src/ProcessTestUtil.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/socket_stream.dart
diff --git a/runtime/bin/socket_stream.dart b/runtime/bin/socket_stream.dart
index 57e6e998d235f57bb7486ed60dbef8d271d50100..e6aab3d4bb4b4ba59d6b7a9a1d7a87f8dbbb6338 100644
--- a/runtime/bin/socket_stream.dart
+++ b/runtime/bin/socket_stream.dart
@@ -56,7 +56,7 @@ class SocketOutputStream implements OutputStream {
SocketOutputStream(Socket socket)
: _socket = socket, _pendingWrites = new _BufferList();
- bool write(List<int> buffer, [bool copyBuffer = true]) {
+ bool write(List<int> buffer, [bool copyBuffer = true]) {
return _write(buffer, 0, buffer.length, copyBuffer);
}
« no previous file with comments | « no previous file | tests/standalone/src/ProcessTestUtil.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698