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

Unified Diff: tests/standalone/io/http_server_socket_test.dart

Issue 10919146: Get rid of a lot of () for getters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | « tests/standalone/io/http_read_test.dart ('k') | tests/standalone/io/process_working_directory_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/io/http_server_socket_test.dart
diff --git a/tests/standalone/io/http_server_socket_test.dart b/tests/standalone/io/http_server_socket_test.dart
index 8644e7c172edd0f28b536a2e72450ea3694234d0..2b835b675b0591ad3768950aa0b5e7636aebfa48 100644
--- a/tests/standalone/io/http_server_socket_test.dart
+++ b/tests/standalone/io/http_server_socket_test.dart
@@ -107,7 +107,7 @@ class SocketMock implements Socket {
_onError = callback;
}
- OutputStream get outputStream() => _outputStream;
+ OutputStream get outputStream => _outputStream;
int hashCode() => _hashCode;
@@ -157,7 +157,7 @@ class ServerSocketMock implements ServerSocket {
_onError = callback;
}
- int get port() => _port;
+ int get port => _port;
int _port;
Function _onConnection;
« no previous file with comments | « tests/standalone/io/http_read_test.dart ('k') | tests/standalone/io/process_working_directory_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698